X-Git-Url: http://git.jankratochvil.net/?p=reactos.git;a=blobdiff_plain;f=lib%2Fntdll%2Frtl%2Fmem.c;h=ae59215c383c88d6b641a08a01b1386f4b295913;hp=393f2d68344173756443a4540d2760acbe598f78;hb=HEAD;hpb=7c0db166f81fbe8c8b913d7f26048e337d383605 diff --git a/lib/ntdll/rtl/mem.c b/lib/ntdll/rtl/mem.c index 393f2d6..ae59215 100644 --- a/lib/ntdll/rtl/mem.c +++ b/lib/ntdll/rtl/mem.c @@ -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 */