mirror of
https://github.com/isledecomp/isle-portable.git
synced 2026-01-12 02:41:14 +00:00
25 lines
394 B
C++
25 lines
394 B
C++
#ifdef MINIWIN
|
|
#include "miniwin/windows.h"
|
|
#else
|
|
#include <windows.h>
|
|
#endif
|
|
|
|
// #ifdef __WIIU__
|
|
// #include "mainUclass.h"
|
|
// #endif
|
|
|
|
// commented out for now
|
|
// #ifdef __WIIU__
|
|
// extern "C" void rpl_entry(void)
|
|
// {
|
|
// Lego1App app;
|
|
// app.Run();
|
|
// }
|
|
// #endif
|
|
|
|
// FUNCTION: LEGO1 0x10091ee0
|
|
BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
|
|
{
|
|
return TRUE;
|
|
}
|