mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
RtlReAllocHeap should be RtlReAllocateHeap
svn path=/trunk/; revision=668
This commit is contained in:
parent
e6359887bb
commit
58eedf7620
3 changed files with 30 additions and 6 deletions
|
@ -1,4 +1,4 @@
|
||||||
/* $Id: heap.c,v 1.15 1999/08/29 06:59:01 ea Exp $
|
/* $Id: heap.c,v 1.16 1999/09/12 22:09:34 ea Exp $
|
||||||
*
|
*
|
||||||
* kernel/heap.c
|
* kernel/heap.c
|
||||||
* Copyright (C) 1996, Onno Hovers, All rights reserved
|
* Copyright (C) 1996, Onno Hovers, All rights reserved
|
||||||
|
@ -64,7 +64,7 @@ LPVOID STDCALL HeapAlloc(HANDLE hheap, DWORD flags, DWORD size)
|
||||||
*********************************************************************/
|
*********************************************************************/
|
||||||
LPVOID STDCALL HeapReAlloc(HANDLE hheap, DWORD flags, LPVOID ptr, DWORD size)
|
LPVOID STDCALL HeapReAlloc(HANDLE hheap, DWORD flags, LPVOID ptr, DWORD size)
|
||||||
{
|
{
|
||||||
return(RtlReAllocHeap(hheap, flags, ptr, size));
|
return(RtlReAllocateHeap(hheap, flags, ptr, size));
|
||||||
}
|
}
|
||||||
|
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
|
|
|
@ -1,7 +1,9 @@
|
||||||
; $Id: ntdll.def,v 1.14 1999/09/04 18:32:57 ekohl Exp $
|
; $Id: ntdll.def,v 1.15 1999/09/12 22:06:26 ea Exp $
|
||||||
;
|
;
|
||||||
; ReactOS Operating System
|
; ReactOS Operating System
|
||||||
;
|
;
|
||||||
|
LIBRARY ntdll
|
||||||
|
|
||||||
EXPORTS
|
EXPORTS
|
||||||
InitializeObjectAttributes
|
InitializeObjectAttributes
|
||||||
NtAcceptConnectPort@24
|
NtAcceptConnectPort@24
|
||||||
|
@ -425,6 +427,7 @@ ZwWriteVirtualMemory@20
|
||||||
ZwW32Call@20
|
ZwW32Call@20
|
||||||
ZwYieldExecution@0
|
ZwYieldExecution@0
|
||||||
RtlAllocateHeap@12
|
RtlAllocateHeap@12
|
||||||
|
RtlAnsiCharToUnicodeChar@4
|
||||||
RtlAnsiStringToUnicodeSize
|
RtlAnsiStringToUnicodeSize
|
||||||
RtlAnsiStringToUnicodeString
|
RtlAnsiStringToUnicodeString
|
||||||
RtlAppendUnicodeStringToString
|
RtlAppendUnicodeStringToString
|
||||||
|
@ -444,6 +447,7 @@ RtlEnlargedUnsignedMultiply
|
||||||
RtlEqualString
|
RtlEqualString
|
||||||
RtlEqualUnicodeString
|
RtlEqualUnicodeString
|
||||||
RtlExtendedIntegerMultiply
|
RtlExtendedIntegerMultiply
|
||||||
|
RtlFillMemory@12
|
||||||
RtlFreeAnsiString
|
RtlFreeAnsiString
|
||||||
RtlFreeHeap@12
|
RtlFreeHeap@12
|
||||||
RtlFreeUnicodeString
|
RtlFreeUnicodeString
|
||||||
|
@ -457,16 +461,24 @@ RtlLargeIntegerAdd
|
||||||
RtlLargeIntegerDivide
|
RtlLargeIntegerDivide
|
||||||
RtlLengthSecurityDescriptor
|
RtlLengthSecurityDescriptor
|
||||||
RtlLockHeap@4
|
RtlLockHeap@4
|
||||||
|
RtlMoveMemory@12
|
||||||
|
RtlMultiByteToUnicodeN@0
|
||||||
RtlNtStatusToDosError
|
RtlNtStatusToDosError
|
||||||
RtlReAllocHeap@16
|
RtlReAllocateHeap@16
|
||||||
RtlSizeHeap@12
|
RtlSizeHeap@12
|
||||||
RtlUnlockHeap@4
|
RtlUnlockHeap@4
|
||||||
RtlUnicodeStringToAnsiSize
|
RtlUnicodeStringToAnsiSize
|
||||||
RtlUnicodeStringToAnsiString
|
RtlUnicodeStringToAnsiString
|
||||||
RtlUnicodeStringToInteger
|
RtlUnicodeStringToInteger
|
||||||
|
RtlUnicodeToMultiByteN@0
|
||||||
|
RtlUnicodeToMultiByteSize@0
|
||||||
|
RtlUnwind@0
|
||||||
RtlUpcaseString
|
RtlUpcaseString
|
||||||
|
RtlUpcaseUnicodeChar@0
|
||||||
RtlUpcaseUnicodeString
|
RtlUpcaseUnicodeString
|
||||||
|
RtlUpcaseUnicodeToMultiByteN@0
|
||||||
RtlValidateHeap@12
|
RtlValidateHeap@12
|
||||||
|
RtlZeroMemory@8
|
||||||
_memccpy
|
_memccpy
|
||||||
_memicmp
|
_memicmp
|
||||||
_splitpath
|
_splitpath
|
||||||
|
|
|
@ -1,7 +1,9 @@
|
||||||
; $Id: ntdll.edf,v 1.5 1999/09/04 18:32:57 ekohl Exp $
|
; $Id: ntdll.edf,v 1.6 1999/09/12 22:06:26 ea Exp $
|
||||||
;
|
;
|
||||||
; ReactOS Operating System
|
; ReactOS Operating System
|
||||||
;
|
;
|
||||||
|
LIBRARY ntdll
|
||||||
|
|
||||||
EXPORTS
|
EXPORTS
|
||||||
InitializeObjectAttributes
|
InitializeObjectAttributes
|
||||||
NtAcceptConnectPort=NtAcceptConnectPort@24
|
NtAcceptConnectPort=NtAcceptConnectPort@24
|
||||||
|
@ -425,6 +427,7 @@ ZwWriteVirtualMemory=ZwWriteVirtualMemory@20
|
||||||
ZwW32Call=ZwW32Call@20
|
ZwW32Call=ZwW32Call@20
|
||||||
ZwYieldExecution=ZwYieldExecution@0
|
ZwYieldExecution=ZwYieldExecution@0
|
||||||
RtlAllocateHeap=RtlAllocateHeap@12
|
RtlAllocateHeap=RtlAllocateHeap@12
|
||||||
|
RtlAnsiCharToUnicodeChar=RtlAnsiCharToUnicodeChar@4
|
||||||
RtlAnsiStringToUnicodeSize
|
RtlAnsiStringToUnicodeSize
|
||||||
RtlAnsiStringToUnicodeString
|
RtlAnsiStringToUnicodeString
|
||||||
RtlAppendUnicodeStringToString
|
RtlAppendUnicodeStringToString
|
||||||
|
@ -444,6 +447,7 @@ RtlEnlargedUnsignedMultiply
|
||||||
RtlEqualString
|
RtlEqualString
|
||||||
RtlEqualUnicodeString
|
RtlEqualUnicodeString
|
||||||
RtlExtendedIntegerMultiply
|
RtlExtendedIntegerMultiply
|
||||||
|
RtlFillMemory=RtlFillMemory@12
|
||||||
RtlFreeAnsiString
|
RtlFreeAnsiString
|
||||||
RtlFreeHeap=RtlFreeHeap@12
|
RtlFreeHeap=RtlFreeHeap@12
|
||||||
RtlFreeUnicodeString
|
RtlFreeUnicodeString
|
||||||
|
@ -457,16 +461,24 @@ RtlLargeIntegerAdd
|
||||||
RtlLargeIntegerDivide
|
RtlLargeIntegerDivide
|
||||||
RtlLengthSecurityDescriptor
|
RtlLengthSecurityDescriptor
|
||||||
RtlLockHeap=RtlLockHeap@4
|
RtlLockHeap=RtlLockHeap@4
|
||||||
|
RtlMoveMemory=RtlMoveMemory@12
|
||||||
|
RtlMultiByteToUnicodeN=RtlMultiByteToUnicodeN@0
|
||||||
RtlNtStatusToDosError
|
RtlNtStatusToDosError
|
||||||
RtlReAllocHeap=RtlReAllocHeap@16
|
RtlReAllocateHeap=RtlReAllocateHeap@16
|
||||||
RtlSizeHeap=RtlSizeHeap@12
|
RtlSizeHeap=RtlSizeHeap@12
|
||||||
RtlUnlockHeap=RtlUnlockHeap@4
|
RtlUnlockHeap=RtlUnlockHeap@4
|
||||||
RtlUnicodeStringToAnsiSize
|
RtlUnicodeStringToAnsiSize
|
||||||
RtlUnicodeStringToAnsiString
|
RtlUnicodeStringToAnsiString
|
||||||
RtlUnicodeStringToInteger
|
RtlUnicodeStringToInteger
|
||||||
|
RtlUnicodeToMultiByteN=RtlUnicodeToMultiByteN@0
|
||||||
|
RtlUnicodeToMultiByteSize=RtlUnicodeToMultiByteSize@0
|
||||||
|
RtlUnwind=RtlUnwind@0
|
||||||
RtlUpcaseString
|
RtlUpcaseString
|
||||||
|
RtlUpcaseUnicodeChar=RtlUpcaseUnicodeChar@0
|
||||||
RtlUpcaseUnicodeString
|
RtlUpcaseUnicodeString
|
||||||
|
RtlUpcaseUnicodeToMultiByteN=RtlUpcaseUnicodeToMultiByteN@0
|
||||||
RtlValidateHeap=RtlValidateHeap@12
|
RtlValidateHeap=RtlValidateHeap@12
|
||||||
|
RtlZeroMemory=RtlZeroMemory@8
|
||||||
_memccpy
|
_memccpy
|
||||||
_memicmp
|
_memicmp
|
||||||
_splitpath
|
_splitpath
|
||||||
|
|
Loading…
Reference in a new issue