mirror of
https://github.com/reactos/reactos.git
synced 2025-01-02 12:32:47 +00:00
Added two stubs.
svn path=/trunk/; revision=10507
This commit is contained in:
parent
28ad49e6f7
commit
81ace77431
2 changed files with 30 additions and 0 deletions
|
@ -1753,4 +1753,18 @@ RtlValidateProcessHeaps(VOID)
|
|||
return Result;
|
||||
}
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
*/
|
||||
ULONG
|
||||
STDCALL
|
||||
RtlZeroHeap(
|
||||
IN PVOID HeapHandle,
|
||||
IN ULONG Flags
|
||||
)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* EOF */
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue