implemented some ldr functions

svn path=/trunk/; revision=712
This commit is contained in:
Boudewijn Dekker 1999-10-18 21:55:30 +00:00
parent f3d9743503
commit ff9ce85a65
4 changed files with 10 additions and 42 deletions

View file

@ -1,4 +1,4 @@
/* $Id: stubs.c,v 1.8 1999/10/17 18:18:44 ariadne Exp $
/* $Id: stubs.c,v 1.9 1999/10/18 21:50:45 ariadne Exp $
*
* KERNEL32.DLL stubs (unimplemented functions)
* Remove from this file, if you implement them.
@ -1702,15 +1702,7 @@ GetModuleHandleW (
}
HMODULE
STDCALL
GetModuleHandleA (
LPCSTR lpModuleName
)
{
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return INVALID_HANDLE_VALUE;
}
WINBOOL

View file

@ -1,4 +1,4 @@
/* $Id: lib.c,v 1.4 1999/10/07 23:45:25 ekohl Exp $
/* $Id: lib.c,v 1.5 1999/10/18 21:50:11 ariadne Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries
@ -36,26 +36,7 @@ LoadLibraryW (
}
HINSTANCE
STDCALL
LoadLibraryA (
LPCSTR lpLibFileName
)
{
UNIMPLEMENTED;
return(NULL);
}
BOOL
STDCALL
FreeLibrary (
HMODULE hLibModule
)
{
UNIMPLEMENTED;
return(FALSE);
}
/* EOF */

View file

@ -1,4 +1,4 @@
/* $Id: proc.c,v 1.22 1999/10/13 22:35:55 ekohl Exp $
/* $Id: proc.c,v 1.23 1999/10/18 21:50:11 ariadne Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries
@ -68,16 +68,7 @@ GetProcessId (
);
FARPROC
STDCALL
GetProcAddress (
HMODULE hModule,
LPCSTR lpProcName
)
{
UNIMPLEMENTED;
return NULL;
}
WINBOOL

View file

@ -1,4 +1,4 @@
; $Id: ntdll.def,v 1.16 1999/10/12 21:17:04 ea Exp $
; $Id: ntdll.def,v 1.17 1999/10/18 21:55:30 ariadne Exp $
;
; ReactOS Operating System
;
@ -546,3 +546,7 @@ wcsrchr
wcsspn
wcsstr
LdrMapNTDllForProcess
LdrLoadDll
LdrUnloadDll
LdrGetExportByName
LdrGetExportByOrdinal