1
0
mirror of synced 2025-02-23 05:30:16 +01:00

13 lines
246 B
C
Raw Normal View History

2023-01-02 23:35:53 -05:00
#pragma once
#include <stdbool.h>
#include <stdint.h>
struct es3sec_config {
bool enable;
wchar_t serial[13];
2023-01-07 00:52:08 -05:00
wchar_t vid[5];
wchar_t pid[5];
};
2023-01-25 21:09:38 -05:00
HRESULT es3sec_hook_init(const struct es3sec_config *cfg, USHORT vid, USHORT pid);