Some missing __stdcall added.

Some missing unicode functions stubs added.
RtlReAllocHeap should be RtlReAllocateHeap.

svn path=/trunk/; revision=666
This commit is contained in:
Emanuele Aliberti 1999-09-12 21:58:32 +00:00
parent d82310b692
commit cda1c38bae
3 changed files with 98 additions and 10 deletions

View file

@ -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)
{