Added two stubs.

svn path=/trunk/; revision=10507
This commit is contained in:
Alex Ionescu 2004-08-12 16:43:37 +00:00
parent 28ad49e6f7
commit 81ace77431
2 changed files with 30 additions and 0 deletions

View file

@ -1753,4 +1753,18 @@ RtlValidateProcessHeaps(VOID)
return Result;
}
/*
* @unimplemented
*/
ULONG
STDCALL
RtlZeroHeap(
IN PVOID HeapHandle,
IN ULONG Flags
)
{
UNIMPLEMENTED;
return 0;
}
/* EOF */

View file

@ -600,6 +600,22 @@ RtlIntegerToUnicodeString(
return Status;
}
/*
* @unimplemented
*/
NTSTATUS
STDCALL
RtlIntegerToUnicode(
IN ULONG Value,
IN ULONG Base OPTIONAL,
IN ULONG Length OPTIONAL,
IN OUT LPWSTR String
)
{
UNIMPLEMENTED;
return STATUS_NOT_IMPLEMENTED;
}
/*
* @implemented