branch update for HEAD-2003021201
[reactos.git] / lib / msvcrt / process / dll.c
index ccb3c2a..565e466 100644 (file)
 #include <windows.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);
-       return (NULL);
+       return (NULL);
 }