Use free Windows DDK and compile with latest MinGW releases.
[reactos.git] / reactos / lib / ntdll / main / dllmain.c
1 /* $Id: dllmain.c,v 1.9 2002/09/07 15:12:39 chorns Exp $
2 *
3 * COPYRIGHT: See COPYING in the top level directory
4 * PROJECT: ReactOS system libraries
5 * FILE: lib/ntdll/main/dllmain.c
6 * PURPOSE:
7 * PROGRAMMER:
8 */
9
10 #include <windows.h>
11 #define NTOS_USER_MODE
12 #include <ntos.h>
13 #include <stdarg.h>
14 #include <stdio.h>
15
16 #define NDEBUG
17 #include <debug.h>
18
19 BOOL WINAPI DllMainCRTStartup(HINSTANCE hinstDll,
20 DWORD fdwReason,
21 LPVOID fImpLoad)
22 {
23 return TRUE;
24 }
25
26 /* EOF */