isle/LEGO1/dllmain.cpp
Joshua Peisach cc47df0b62
Revert "Define WIN32_LEAN_AND_MEAN when importing windows.h"
This reverts commit 33048db81a.

This screws up the build. The context shouldn't change that much anyways
2023-09-08 17:26:47 -04:00

8 lines
168 B
C++

#include <windows.h>
// OFFSET: LEGO1 0x10091ee0
__declspec(dllexport) BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
{
return TRUE;
}