update for HEAD-2003091401
[reactos.git] / lib / ntdll / rtl / mem.c
index 393f2d6..ae59215 100644 (file)
@@ -42,6 +42,9 @@ RtlCompareMemory(PVOID Source1,
    return(total);
 }
 
+/*
+ * @implemented
+ */
 ULONG
 STDCALL
 RtlCompareMemoryUlong (
@@ -89,6 +92,9 @@ VOID RtlCopyMemory(VOID* Destination, CONST VOID* Source, ULONG Length)
 }
 #endif
 
+/*
+ * @implemented
+ */
 VOID 
 STDCALL
 RtlFillMemory (
@@ -100,6 +106,9 @@ RtlFillMemory (
        memset(Destination, Fill, Length);
 }
 
+/*
+ * @implemented
+ */
 VOID
 STDCALL
 RtlFillMemoryUlong (
@@ -120,6 +129,9 @@ RtlFillMemoryUlong (
 }
 
 
+/*
+ * @implemented
+ */
 VOID
 STDCALL
 RtlMoveMemory (
@@ -136,6 +148,9 @@ RtlMoveMemory (
 }
 
 
+/*
+ * @implemented
+ */
 VOID
 STDCALL
 RtlZeroMemory (
@@ -150,5 +165,4 @@ RtlZeroMemory (
                );
 }
 
-
 /* EOF */