1
0
mirror of https://gitea.tendokyu.moe/Dniel97/segatools.git synced 2025-01-10 15:51:47 +01:00

26 lines
502 B
C
Raw Normal View History

#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;
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);