mirror of
https://github.com/reactos/reactos.git
synced 2025-08-07 16:53:33 +00:00
10 lines
260 B
C
10 lines
260 B
C
#include <oscalls.h>
|
|
#define _DECL_DLLMAIN
|
|
#include <process.h>
|
|
|
|
BOOL WINAPI DllMain (HANDLE hDllHandle __attribute__ ((__unused__)),
|
|
DWORD dwReason __attribute__ ((__unused__)),
|
|
LPVOID lpreserved __attribute__ ((__unused__)))
|
|
{
|
|
return TRUE;
|
|
}
|