segatools/amex/ds.h

23 lines
376 B
C
Raw Normal View History

2018-11-08 01:04:54 +00:00
#pragma once
#include <windows.h>
2019-11-06 00:36:35 +00:00
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
struct ds_config {
bool enable;
uint8_t region;
wchar_t serial_no[17];
};
2019-05-04 17:12:20 +00:00
2018-11-08 01:04:54 +00:00
DEFINE_GUID(
ds_guid,
0x279A9F67,
0x348F,
0x41C9,
0xA4, 0xC4, 0xDF, 0xDB, 0x8A, 0xE8, 0xE5, 0xE0);
2019-05-04 17:12:20 +00:00
HRESULT ds_hook_init(const struct ds_config *cfg);