mirror of
https://github.com/reactos/reactos.git
synced 2025-08-07 07:42:56 +00:00
Some missing __stdcall added.
Some missing unicode functions stubs added. RtlReAllocHeap should be RtlReAllocateHeap. svn path=/trunk/; revision=666
This commit is contained in:
parent
d82310b692
commit
cda1c38bae
3 changed files with 98 additions and 10 deletions
|
@ -56,17 +56,23 @@ VOID RtlCopyMemory(VOID* Destination, CONST VOID* Source, ULONG Length)
|
|||
DPRINT("*Destination %x\n",*(PULONG)Destination);
|
||||
}
|
||||
|
||||
VOID RtlFillMemory(PVOID Destination, ULONG Length, UCHAR Fill)
|
||||
VOID
|
||||
STDCALL
|
||||
RtlFillMemory(PVOID Destination, ULONG Length, UCHAR Fill)
|
||||
{
|
||||
memset(Destination,Fill,Length);
|
||||
}
|
||||
|
||||
VOID RtlZeroMemory(PVOID Destination, ULONG Length)
|
||||
VOID
|
||||
STDCALL
|
||||
RtlZeroMemory(PVOID Destination, ULONG Length)
|
||||
{
|
||||
RtlFillMemory(Destination,Length,0);
|
||||
}
|
||||
|
||||
VOID RtlMoveMemory(PVOID Destination,
|
||||
VOID
|
||||
STDCALL
|
||||
RtlMoveMemory(PVOID Destination,
|
||||
CONST VOID* Source,
|
||||
ULONG Length)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue