summaryrefslogtreecommitdiff
path: root/src/pal/inc/pal.h
diff options
context:
space:
mode:
authorAdeel Mujahid <adeelbm@outlook.com>2019-02-18 06:29:23 +0200
committerJan Kotas <jkotas@microsoft.com>2019-02-17 20:29:23 -0800
commit6252e7d5b428b17e46fc4424bdf6fad38ebd1c35 (patch)
tree88d05fb89173414c4ed98537a2846d2e113440d6 /src/pal/inc/pal.h
parent390d002ac1ff919fcaae047eb09217ddeac78779 (diff)
downloadcoreclr-6252e7d5b428b17e46fc4424bdf6fad38ebd1c35.tar.gz
coreclr-6252e7d5b428b17e46fc4424bdf6fad38ebd1c35.tar.bz2
coreclr-6252e7d5b428b17e46fc4424bdf6fad38ebd1c35.zip
Delete RtlMoveMemory and tests (#22668)
Diffstat (limited to 'src/pal/inc/pal.h')
-rw-r--r--src/pal/inc/pal.h9
1 files changed, 0 insertions, 9 deletions
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