mirror of
https://gitea.tendokyu.moe/Hay1tsme/segatools.git
synced 2026-03-21 17:44:12 -05:00
14 lines
251 B
C
14 lines
251 B
C
#pragma once
|
|
|
|
#include <windows.h>
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
#include <limits.h>
|
|
|
|
struct network_config {
|
|
bool enable;
|
|
bool disable_ssl;
|
|
char title_server[PATH_MAX];
|
|
};
|
|
|
|
HRESULT network_hook_init(struct network_config *cfg); |