1
0
mirror of https://gitea.tendokyu.moe/Dniel97/segatools.git synced 2025-01-09 23:41:35 +01:00

21 lines
353 B
C
Raw Normal View History

#pragma once
#include <windows.h>
2019-11-05 19:36:35 -05:00
#include <stdbool.h>
#include <stddef.h>
struct eeprom_config {
bool enable;
wchar_t path[MAX_PATH];
};
2019-05-04 13:12:20 -04:00
DEFINE_GUID(
eeprom_guid,
0xB7970F0C,
0x31C4,
0x45FF,
0x96, 0x18, 0x0A, 0x24, 0x00, 0x94, 0xB2, 0x71);
2019-05-04 13:12:20 -04:00
HRESULT eeprom_hook_init(const struct eeprom_config *cfg);