mirror of
https://gitea.tendokyu.moe/Hay1tsme/bananatools.git
synced 2026-04-20 08:17:15 -05:00
16 lines
283 B
C
16 lines
283 B
C
#pragma once
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
|
|
struct es3sec_config {
|
|
bool enable;
|
|
wchar_t serial[13];
|
|
};
|
|
|
|
HRESULT es3sec_hook_init(
|
|
const struct es3sec_config *cfg,
|
|
USHORT vid,
|
|
USHORT pid,
|
|
const wchar_t *manufacturer,
|
|
const wchar_t *product);
|