mirror of
https://gitea.tendokyu.moe/Hay1tsme/bananatools.git
synced 2026-04-24 23:46:52 -05:00
14 lines
298 B
C
14 lines
298 B
C
#pragma once
|
|
#include <windows.h>
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
|
|
#include "platform/es3sec.h"
|
|
|
|
struct amactivator_config {
|
|
bool enable;
|
|
const char auth_file[MAX_PATH];
|
|
};
|
|
|
|
HRESULT amactivator_hook_init(const struct amactivator_config* cfg, const struct es3sec_config* dong_cfg);
|