mirror of
https://gitea.tendokyu.moe/TeamTofuShop/segatools.git
synced 2026-09-22 22:37:59 +03:00
15 lines
290 B
C
15 lines
290 B
C
#pragma once
|
|
|
|
#include <windows.h>
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
|
|
struct misc_config {
|
|
bool enable;
|
|
bool allowReboot;
|
|
bool allowMasterKeyWrite;
|
|
wchar_t nextProcessFile[MAX_PATH];
|
|
};
|
|
|
|
HRESULT misc_hook_init(const struct misc_config *cfg, const char *platform_id);
|