2019-03-16 16:17:16 +00:00
|
|
|
#pragma once
|
|
|
|
|
2019-11-06 00:31:11 +00:00
|
|
|
#include <windows.h>
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
|
|
|
|
struct pcbid_config {
|
|
|
|
bool enable;
|
|
|
|
wchar_t serial_no[17];
|
|
|
|
};
|
2019-08-20 22:44:57 +00:00
|
|
|
|
2019-11-04 00:54:31 +00:00
|
|
|
HRESULT pcbid_hook_init(const struct pcbid_config *cfg);
|