This repository has been archived on 2024-12-27. You can view files and clone it, but cannot push or open issues or pull requests.
Files
segatools/platform/pcbid.h
2019-11-05 19:31:11 -05:00

14 lines
205 B
C

#pragma once
#include <windows.h>
#include <stdbool.h>
#include <stddef.h>
struct pcbid_config {
bool enable;
wchar_t serial_no[17];
};
HRESULT pcbid_hook_init(const struct pcbid_config *cfg);