mirror of
https://github.com/reactos/reactos.git
synced 2025-04-21 12:40:33 +00:00
Fixed typos
svn path=/trunk/; revision=1613
This commit is contained in:
parent
b611b79b36
commit
03fd77240f
3 changed files with 8 additions and 8 deletions
|
@ -1,4 +1,4 @@
|
|||
; $Id: ntdll.def,v 1.68 2001/01/21 00:07:51 phreak Exp $
|
||||
; $Id: ntdll.def,v 1.69 2001/02/10 22:23:07 ekohl Exp $
|
||||
;
|
||||
; ReactOS Operating System
|
||||
;
|
||||
|
@ -15,7 +15,7 @@ CsrClientCallServer@16
|
|||
CsrClientConnectToServer@0
|
||||
;CsrFreeCaptureBuffer
|
||||
;CsrIdentifyAlertableThread
|
||||
;CrsNewThread
|
||||
;CsrNewThread
|
||||
;CsrProbeForRead
|
||||
;CsrProbeForWrite
|
||||
CsrSetPriorityClass@8
|
||||
|
@ -401,7 +401,7 @@ RtlFindSetBitsAndClear@12
|
|||
RtlFirstFreeAce@8
|
||||
;RtlFlushPropertySet
|
||||
;RtlFormatCurrentUserKeyPath
|
||||
;RtlFormatMessage
|
||||
;RtlFormatMessage@36
|
||||
RtlFreeAnsiString@4
|
||||
;RtlFreeHandle
|
||||
RtlFreeHeap@12
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
; $Id: ntdll.edf,v 1.57 2001/01/21 00:07:51 phreak Exp $
|
||||
; $Id: ntdll.edf,v 1.58 2001/02/10 22:23:07 ekohl Exp $
|
||||
;
|
||||
; ReactOS Operating System
|
||||
;
|
||||
|
@ -15,7 +15,7 @@ CsrClientCallServer=CsrClientCallServer@16
|
|||
CsrClientConnectToServer=CsrClientConnectToServer@0
|
||||
;CsrFreeCaptureBuffer
|
||||
;CsrIdentifyAlertableThread
|
||||
;CrsNewThread
|
||||
;CsrNewThread
|
||||
;CsrProbeForRead
|
||||
;CsrProbeForWrite
|
||||
CsrSetPriorityClass=CsrSetPriorityClass@8
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $Id: utils.c,v 1.39 2001/02/10 10:04:39 ekohl Exp $
|
||||
/* $Id: utils.c,v 1.40 2001/02/10 22:23:30 ekohl Exp $
|
||||
*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS kernel
|
||||
|
@ -194,7 +194,7 @@ LdrLoadDll (IN PWSTR SearchPath OPTIONAL,
|
|||
*/
|
||||
if (LdrFindDll(&Module, &AdjustedName) == STATUS_SUCCESS)
|
||||
{
|
||||
DPRINT1("DLL %wZ already loaded.\n", &AdjustedName);
|
||||
DPRINT("DLL %wZ already loaded.\n", &AdjustedName);
|
||||
if (Module->LoadCount != -1)
|
||||
Module->LoadCount++;
|
||||
*BaseAddress = Module->BaseAddress;
|
||||
|
@ -1546,7 +1546,7 @@ LdrGetDllHandle (IN ULONG Unknown1,
|
|||
if ( DllName == NULL )
|
||||
{
|
||||
*BaseAddress = NtCurrentPeb()->ImageBaseAddress;
|
||||
DPRINT1("BaseAddress %x\n", *BaseAddress);
|
||||
DPRINT("BaseAddress %x\n", *BaseAddress);
|
||||
return STATUS_SUCCESS;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue