update for HEAD-2003091401
[reactos.git] / lib / crtdll / process / dll.c
index daa003d..b6d371d 100644 (file)
 #include <msvcrt/process.h>
 
 
+/*
+ * @implemented
+ */
 void* _loaddll(char* name)
 {
        return LoadLibraryA(name);
 }
 
+/*
+ * @implemented
+ */
 int _unloaddll(void* handle)
 {
        return FreeLibrary(handle);
 }
 
+/*
+ * @implemented
+ */
 FARPROC _getdllprocaddr(void* hModule, char* lpProcName, int iOrdinal)
 {
        if (lpProcName != NULL)