ref_dx2 (WIP)

This commit is contained in:
lewa_j
2025-12-08 00:34:23 +03:00
parent 5daf686a82
commit d414eeb246
5 changed files with 2018 additions and 0 deletions

19
ref/dx2/dllmain.cpp Normal file
View File

@@ -0,0 +1,19 @@
// dllmain.cpp : Defines the entry point for the DLL application.
#include "windows.h"
BOOL APIENTRY DllMain( HMODULE hModule,
DWORD ul_reason_for_call,
LPVOID lpReserved
)
{
switch (ul_reason_for_call)
{
case DLL_PROCESS_ATTACH:
case DLL_THREAD_ATTACH:
case DLL_THREAD_DETACH:
case DLL_PROCESS_DETACH:
break;
}
return TRUE;
}