Danbias/Code/Game/DanBiasGame/DLLMain.cpp

8 lines
200 B
C++
Raw Normal View History

#define NOMINMAX
2013-12-03 12:07:37 +01:00
#include <windows.h>
BOOL WINAPI DllMain( _In_ HINSTANCE hinstDLL, _In_ DWORD fdwReason, _In_ LPVOID lpvReserved )
{
//MessageBox(0, L"DanBiasGame Loaded", 0, 0);
2013-12-03 12:07:37 +01:00
return TRUE;
}