From 6252e7d5b428b17e46fc4424bdf6fad38ebd1c35 Mon Sep 17 00:00:00 2001 From: Adeel Mujahid Date: Mon, 18 Feb 2019 06:29:23 +0200 Subject: Delete RtlMoveMemory and tests (#22668) --- src/pal/inc/pal.h | 9 --------- 1 file changed, 9 deletions(-) (limited to 'src/pal/inc/pal.h') diff --git a/src/pal/inc/pal.h b/src/pal/inc/pal.h index 0357464812..20befc9de4 100644 --- a/src/pal/inc/pal.h +++ b/src/pal/inc/pal.h @@ -2827,20 +2827,11 @@ VirtualQuery( OUT PMEMORY_BASIC_INFORMATION lpBuffer, IN SIZE_T dwLength); -PALIMPORT -VOID -PALAPI -RtlMoveMemory( - IN PVOID Destination, - IN CONST VOID *Source, - IN SIZE_T Length); - #define MoveMemory memmove #define CopyMemory memcpy #define FillMemory(Destination,Length,Fill) memset((Destination),(Fill),(Length)) #define ZeroMemory(Destination,Length) memset((Destination),0,(Length)) - PALIMPORT HANDLE PALAPI -- cgit v1.2.3