Reverted latest changes.

svn path=/trunk/; revision=3473
This commit is contained in:
Casper Hornstrup 2002-09-08 10:23:54 +00:00
parent 06d3fda385
commit 17c0b5798e
1261 changed files with 42752 additions and 18631 deletions

View file

@ -1,4 +1,4 @@
/* $Id: mem.c,v 1.10 2002/09/07 15:12:40 chorns Exp $
/* $Id: mem.c,v 1.11 2002/09/08 10:23:05 chorns Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel
@ -11,22 +11,14 @@
/* INCLUDES *****************************************************************/
#define NTOS_USER_MODE
#include <ntos.h>
#include <ddk/ntddk.h>
#include <string.h>
#define NDEBUG
#include <debug.h>
/* FUNCTIONS *****************************************************************/
#undef RtlCompareMemory
SIZE_T STDCALL
RtlCompareMemory(
IN CONST VOID *Source1,
IN CONST VOID *Source2,
IN SIZE_T Length)
ULONG
STDCALL
RtlCompareMemory(PVOID Source1, PVOID Source2, ULONG Length)
/*
* FUNCTION: Compares blocks of memory and returns the number of equal bytes
* ARGUMENTS:
@ -48,8 +40,6 @@ RtlCompareMemory(
return(total);
}
#undef RtlCompareMemoryUlong
ULONG
STDCALL
RtlCompareMemoryUlong (
@ -81,8 +71,6 @@ RtlCompareMemoryUlong (
}
#if 0
#undef RtlCopyBytes
VOID RtlCopyBytes(PVOID Destination,
CONST VOID* Source,
ULONG Length)
@ -90,8 +78,6 @@ VOID RtlCopyBytes(PVOID Destination,
RtlCopyMemory(Destination,Source,Length);
}
#undef RtlCopyMemory
VOID RtlCopyMemory(VOID* Destination, CONST VOID* Source, ULONG Length)
{
DPRINT("RtlCopyMemory(Destination %x Source %x Length %d\n",
@ -101,8 +87,6 @@ VOID RtlCopyMemory(VOID* Destination, CONST VOID* Source, ULONG Length)
}
#endif
#undef RtlFillMemory
VOID
STDCALL
RtlFillMemory (
@ -118,8 +102,6 @@ RtlFillMemory (
);
}
#undef RtlFillMemoryUlong
VOID
STDCALL
RtlFillMemoryUlong (
@ -139,7 +121,6 @@ RtlFillMemoryUlong (
}
}
#undef RtlZeroMemory
VOID
STDCALL
@ -155,7 +136,6 @@ RtlZeroMemory (
);
}
#undef RtlMoveMemory
VOID
STDCALL