1
0
mirror of https://gitea.tendokyu.moe/Dniel97/segatools.git synced 2025-01-10 07:41:46 +01:00

21 lines
345 B
C
Raw Normal View History

2018-11-07 20:03:25 -05:00
#pragma once
#include <windows.h>
2019-11-05 19:36:35 -05:00
#include <stdbool.h>
#include <stddef.h>
struct sram_config {
bool enable;
wchar_t path[MAX_PATH];
};
2019-05-04 13:12:20 -04:00
2018-11-07 20:03:25 -05:00
DEFINE_GUID(
sram_guid,
0x741B5FCA,
0x4635,
0x4443,
0xA7, 0xA0, 0x57, 0xCA, 0x7B, 0x50, 0x6A, 0x49);
2019-05-04 13:12:20 -04:00
HRESULT sram_hook_init(const struct sram_config *cfg);