mirror of
https://gitea.tendokyu.moe/TeamTofuShop/segatools.git
synced 2026-09-22 22:37:59 +03:00
13 lines
200 B
C
13 lines
200 B
C
#pragma once
|
|
|
|
#include <windows.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
struct elo_config {
|
|
bool enable;
|
|
unsigned int port_no;
|
|
};
|
|
|
|
HRESULT elo_hook_init(const struct elo_config *cfg, unsigned int port_no);
|