17 lines
310 B
C
17 lines
310 B
C
#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);
|