1
0
mirror of synced 2024-12-18 07:05:52 +01:00
bananatools/saohook/systype.h

17 lines
310 B
C
Raw Normal View History

2023-12-11 00:48:47 +01: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);