13 lines
244 B
C
13 lines
244 B
C
#pragma once
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
|
|
struct es3sec_config {
|
|
bool enable;
|
|
wchar_t serial[13];
|
|
wchar_t vid[5];
|
|
wchar_t pid[5];
|
|
};
|
|
|
|
HRESULT es3sec_hook_init(const struct es3sec_config *cfg, char *vid, char *pid);
|