Added two stubs.
authorAlex Ionescu <aionescu@gmail.com>
Thu, 12 Aug 2004 16:43:37 +0000 (16:43 +0000)
committerAlex Ionescu <aionescu@gmail.com>
Thu, 12 Aug 2004 16:43:37 +0000 (16:43 +0000)
svn path=/trunk/; revision=10507

reactos/lib/rtl/heap.c
reactos/lib/rtl/unicode.c

index b258d1e..c5f7c53 100644 (file)
@@ -1753,4 +1753,18 @@ RtlValidateProcessHeaps(VOID)
    return Result;
 }
 
+/*
+ * @unimplemented
+ */
+ULONG
+STDCALL
+RtlZeroHeap(
+    IN PVOID HeapHandle,
+    IN ULONG Flags
+    )
+{
+    UNIMPLEMENTED;
+    return 0;
+}
+
 /* EOF */
index 4845e48..759395e 100644 (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