8 lines
182 B
C++
8 lines
182 B
C++
|
|
||
|
#include <windows.h>
|
||
|
|
||
|
BOOL WINAPI DllMain( _In_ HINSTANCE hinstDLL, _In_ DWORD fdwReason, _In_ LPVOID lpvReserved )
|
||
|
{
|
||
|
MessageBox(0, L"DanBiasGame Loaded", 0, 0);
|
||
|
return TRUE;
|
||
|
}
|