L2Bot2.0/Sandbox/Sandbox.cpp
2023-01-16 15:33:32 +04:00

23 lines
353 B
C++

#include <iostream>
#include <Windows.h>
int main()
{
/*NamedPipe p;
p.Connect("PipeL2Bot");
p.Send("\\\\.\\pipe\\Test");
NamedPipe p1;
p1.Connect("Test");
while (true)
{
p1.Send("123");
std::cin.get();
}*/
HMODULE hDll = LoadLibraryA("L2BotDll.dll");
std::cin.get();
FreeLibrary(hDll);
}