mirror of
https://gitea.tendokyu.moe/Hay1tsme/segatools.git
synced 2024-11-13 21:20:50 +01:00
13 lines
231 B
C
13 lines
231 B
C
#pragma once
|
|
|
|
#include <windows.h>
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
|
|
struct network_config {
|
|
bool enable;
|
|
bool disable_ssl;
|
|
char title_server[PATH_MAX];
|
|
};
|
|
|
|
HRESULT network_hook_init(struct network_config *cfg); |