Finalise MSVC port (#739)

* Fix for MIPS issue.

* Sparc support added.

* M68K support added.

* Arm support ported.

* Fix issue with VS2015 shlobj.h file

* Arm issue fix.

* Finalise MSVC port.
This commit is contained in:
xorstream
2017-01-25 01:09:33 +11:00
committed by Nguyen Anh Quynh
parent e08d1bf7c6
commit 2a941e3efb
32 changed files with 1368 additions and 369 deletions

View File

@ -0,0 +1,18 @@
#include <windows.h>
BOOL APIENTRY DllMain( HMODULE hModule,
DWORD ul_reason_for_call,
LPVOID lpReserved
)
{
switch (ul_reason_for_call)
{
case DLL_PROCESS_ATTACH:
case DLL_THREAD_ATTACH:
case DLL_THREAD_DETACH:
case DLL_PROCESS_DETACH:
break;
}
return TRUE;
}