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
|
|
|
};
|
|
|
|
|
2023-03-21 23:47:06 -04:00
|
|
|
HRESULT es3sec_hook_init(
|
|
|
|
const struct es3sec_config *cfg,
|
|
|
|
USHORT vid,
|
|
|
|
USHORT pid,
|
|
|
|
const wchar_t *manufacturer,
|
|
|
|
const wchar_t *product);
|