From 24160311c0ff05df61efc071d5d3d96de250f01d Mon Sep 17 00:00:00 2001 From: Rex Jolliff Date: Wed, 10 Mar 1999 07:18:38 +0000 Subject: [PATCH] more changes to compile under mingw32 svn path=/trunk/; revision=287 --- reactos/lib/ntdll/main/dllmain.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/reactos/lib/ntdll/main/dllmain.c b/reactos/lib/ntdll/main/dllmain.c index 540550959e2..955c0343095 100644 --- a/reactos/lib/ntdll/main/dllmain.c +++ b/reactos/lib/ntdll/main/dllmain.c @@ -1,5 +1,9 @@ -int DllMainCRTStartup(void) +#include + +/* FIXME: Should this function be called DllEntryPoint? */ + +BOOL WINAPI STDCALL DllMainCRTStartup(HINSTANCE hDLLInst, DWORD fdwReason, LPVOID lpvReserved) { return 0; }