2009-03-14 00:50:23 +00:00
|
|
|
/**
|
|
|
|
* This file has no copyright assigned and is placed in the Public Domain.
|
|
|
|
* This file is part of the w64 mingw-runtime package.
|
2010-03-28 23:27:01 +00:00
|
|
|
* No warranty is given; refer to the file DISCLAIMER.PD within this package.
|
2009-03-14 00:50:23 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <oscalls.h>
|
2008-12-13 21:28:05 +00:00
|
|
|
#define _DECL_DLLMAIN
|
|
|
|
#include <process.h>
|
|
|
|
|
2009-11-04 21:22:53 +00:00
|
|
|
BOOL WINAPI DllEntryPoint (HANDLE, DWORD, LPVOID);
|
|
|
|
|
2010-07-19 09:58:51 +00:00
|
|
|
BOOL WINAPI DllEntryPoint (HANDLE __UNUSED_PARAM(hDllHandle),
|
|
|
|
DWORD __UNUSED_PARAM(dwReason),
|
|
|
|
LPVOID __UNUSED_PARAM(lpreserved))
|
2008-12-13 21:28:05 +00:00
|
|
|
{
|
|
|
|
return TRUE;
|
|
|
|
}
|