Create reps

This commit is contained in:
Данил
2024-07-20 13:22:02 +07:00
parent 6c66e83662
commit 9897882742
116 changed files with 1619 additions and 1 deletions
+13
View File
@@ -0,0 +1,13 @@
#pragma once
#include <WinSock2.h>
#ifdef LIBRARY_EXPORT
#define LIBRARY_API __declspec(dllexport)
#else
#define LIBRARY_API __declspec(dllimport)
#endif
extern "C" void LIBRARY_API NetInit();
extern "C" void LIBRARY_API MyConnect(SOCKADDR* addr, SOCKET* Socket);