NAME

RtlCompareMemory  (NTDLL.@)

SYNOPSIS

 SIZE_T RtlCompareMemory
 (
  const VOID* Source1,
  const VOID* Source2,
  SIZE_T      Length
 )

DESCRIPTION

Compare one block of memory with another.

PARAMS

Source1 [In] Source block.
Source2 [In] Block to compare to Source1.
Length [In] Number of bytes to compare.

RETURNS

The length of the first byte at which Source1 and Source2 differ, or Length if they are the same.

IMPLEMENTATION

Declared in "winnt.h". https://source.winehq.org/source/include/winnt.h

Implemented in "dlls/ntdll/rtl.c". https://source.winehq.org/source/dlls/ntdll/rtl.c

Debug channel "ntdll".


Copyright © 2024 The Wine Project. All trademarks are the property of their respective owners. Visit WineHQ for license details. Generated Apr 2024.