update for HEAD-2003021201
[reactos.git] / lib / crtdll / process / dll.c
index 71a33b1..daa003d 100644 (file)
@@ -9,23 +9,22 @@
  */
 
 #include <windows.h>
-#include <crtdll/process.h>
+#include <msvcrt/process.h>
 
-void *_loaddll (char *name)
+
+void* _loaddll(char* name)
 {
        return LoadLibraryA(name);
 }
 
-int _unloaddll(void *handle)
+int _unloaddll(voidhandle)
 {
        return FreeLibrary(handle);
 }
 
-FARPROC _getdllprocaddr(void *hModule,char * lpProcName, int iOrdinal)
+FARPROC _getdllprocaddr(void* hModule, char* lpProcName, int iOrdinal)
 {
-   
-
-       if ( lpProcName != NULL ) 
+       if (lpProcName != NULL) 
                return GetProcAddress(hModule, lpProcName);
        else
                return GetProcAddress(hModule, (LPSTR)iOrdinal);