unstable patch for 202312+

This commit is contained in:
Devin Zuczek
2026-08-05 12:48:09 -04:00
parent 591618af0f
commit 36f1730715
56 changed files with 4023 additions and 2557 deletions
+20
View File
@@ -0,0 +1,20 @@
#pragma once
#include "common.h"
typedef int (WSAAPI *connect_t)(
SOCKET,
const struct sockaddr *,
int
);
extern connect_t real_connect;
extern connect_t original_connect;
extern BYTE backup_connect[14];
int WSAAPI hook_connect(
SOCKET,
const struct sockaddr *,
int
);