mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 15:25:28 +00:00
17 lines
291 B
C
17 lines
291 B
C
|
#define WIN32_LEAN_AND_MEAN
|
||
|
#include <windows.h>
|
||
|
#undef WIN32_LEAN_AND_MEAN
|
||
|
#include <stdio.h>
|
||
|
|
||
|
BOOL APIENTRY DllMain (HINSTANCE hInst, DWORD reason, LPVOID reserved)
|
||
|
{
|
||
|
return TRUE;
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
BOOL APIENTRY DllMainCRTStartup (HINSTANCE hInst, DWORD reason, LPVOID reserved)
|
||
|
{
|
||
|
return TRUE;
|
||
|
}
|
||
|
*/
|