Module: wine Branch: master Commit: 3b4c6e6d99805e9494646e1410be0236caa457d1 URL: https://source.winehq.org/git/wine.git/?a=commit;h=3b4c6e6d99805e9494646e141...
Author: Stefan Leichter sle85276@gmx.de Date: Thu Jan 4 12:15:17 2018 +0100
include: Add RtlCompareMemory declaration to winnt.h.
Signed-off-by: Stefan Leichter sle85276@gmx.de Signed-off-by: Alexandre Julliard julliard@winehq.org
---
include/winnt.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/winnt.h b/include/winnt.h index a2c14cd..1fb09b3 100644 --- a/include/winnt.h +++ b/include/winnt.h @@ -5501,7 +5501,7 @@ typedef enum _CM_ERROR_CONTROL_TYPE CriticalError = SERVICE_ERROR_CRITICAL } SERVICE_ERROR_TYPE;
- +NTSYSAPI SIZE_T WINAPI RtlCompareMemory(const VOID*, const VOID*, SIZE_T);
#define RtlEqualMemory(Destination, Source, Length) (!memcmp((Destination),(Source),(Length))) #define RtlMoveMemory(Destination, Source, Length) memmove((Destination),(Source),(Length))