mirror of
https://gitea.tendokyu.moe/Dniel97/segatools.git
synced 2025-03-04 00:52:48 +01:00
11 lines
318 B
C
11 lines
318 B
C
#pragma once
|
|
|
|
#include <windows.h>
|
|
|
|
#include <stddef.h>
|
|
void http_hook_init();
|
|
void port_hook_init(unsigned short _startup_port, unsigned short _billing_port, unsigned short _aimedb_port);
|
|
// if to_src is NULL, all lookups for from_src will fail
|
|
HRESULT dns_hook_push(const wchar_t *from_src, const wchar_t *to_src);
|
|
|