2018-11-08 09:24:32 -05:00
|
|
|
#pragma once
|
|
|
|
|
2019-05-17 23:10:09 -04:00
|
|
|
#include <windows.h>
|
|
|
|
|
2019-11-05 19:31:11 -05:00
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
struct nusec_config {
|
|
|
|
bool enable;
|
|
|
|
char keychip_id[16];
|
|
|
|
char game_id[4];
|
|
|
|
char platform_id[4];
|
|
|
|
uint8_t region;
|
|
|
|
uint8_t system_flag;
|
|
|
|
uint32_t subnet;
|
2022-12-10 23:21:54 -05:00
|
|
|
uint16_t billing_type;
|
2019-11-05 19:31:11 -05:00
|
|
|
wchar_t billing_ca[MAX_PATH];
|
|
|
|
wchar_t billing_pub[MAX_PATH];
|
|
|
|
};
|
2019-05-17 23:10:09 -04:00
|
|
|
|
|
|
|
HRESULT nusec_hook_init(
|
|
|
|
const struct nusec_config *cfg,
|
|
|
|
const char *game_id,
|
|
|
|
const char *platform_id);
|