bananatools/saohook/systype.h

17 lines
310 B
C
Raw Permalink Normal View History

2023-12-10 23:48:47 +00:00
#pragma once
#include <windows.h>
#include <stdbool.h>
#include "platform/es3sec.h"
enum SAO_SYS_TYPE {
CLIENT,
TERMINAL
};
struct systype_config {
bool enable;
enum SAO_SYS_TYPE type;
};
HRESULT systype_hook_init(const struct systype_config *sys_cfg, const struct es3sec_config *dong_cfg);