mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 13:52:30 +00:00
11 lines
194 B
C
11 lines
194 B
C
|
/* $Id: main.c,v 1.1 2001/09/08 22:13:16 ea Exp $
|
||
|
*/
|
||
|
#define NTOS_MODE_USER
|
||
|
#include <ntos.h>
|
||
|
|
||
|
BOOL STDCALL DllMain (HANDLE hDll, DWORD dwReason, LPVOID lpReserved)
|
||
|
{
|
||
|
return TRUE;
|
||
|
}
|
||
|
/* EOF */
|