:pserver:cvsanon@mok.lvcm.com:/CVS/ReactOS reactos
[reactos.git] / lib / ntdll / main / dllmain.c
1 /* $Id$
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 <ddk/ntddk.h>
11 #include <stdarg.h>
12 #include <stdio.h>
13 #include <ntdll/ntdll.h>
14 #include <windows.h>
15
16 BOOL WINAPI DllMainCRTStartup(HINSTANCE hinstDll,
17                               DWORD fdwReason,
18                               LPVOID fImpLoad)
19 {
20   return TRUE;
21 }
22
23 /* EOF */