mirror of
https://gitgud.io/yuv420p10le/plexmediaserver_crack
synced 2025-07-04 16:34:47 +00:00
17 lines
310 B
C++
17 lines
310 B
C++
#define WIN32_LEAN_AND_MEAN
|
|
#include <Windows.h>
|
|
|
|
#include "proxy.hpp"
|
|
#include "hook.hpp"
|
|
|
|
BOOL APIENTRY DllMain([[maybe_unused]] HMODULE hModule, DWORD ul_reason_for_call, [[maybe_unused]] LPVOID lpReserved)
|
|
{
|
|
if(ul_reason_for_call == DLL_PROCESS_ATTACH)
|
|
{
|
|
hook();
|
|
}
|
|
|
|
return TRUE;
|
|
}
|
|
|