mirror of
https://gitea.tendokyu.moe/TeamTofuShop/bananatools.git
synced 2026-09-22 22:37:56 +03:00
13 lines
262 B
C
13 lines
262 B
C
#pragma once
|
|
#include <windows.h>
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
|
|
#include "platform/es3sec.h"
|
|
|
|
struct amactivator_config {
|
|
bool enable;
|
|
};
|
|
|
|
HRESULT amactivator_hook_init(const struct amactivator_config* cfg, const struct es3sec_config* dong_cfg);
|