// ndis.h
void NdisEqualMemory(
Source1,
Source2,
Length
);
View the official Windows Driver Kit DDI referenceNo description available.
The NdisEqualMemory function compares a specified number of characters in one block of memory with the same number of characters in a second block of memory.
Source1A pointer to the first block of memory to be compared.
Source2A pointer to the second block of memory to be compared.
LengthThe number of bytes to be compared.
NdisEqualMemory compares two blocks of memory and uses the value that is specified in the Length parameter for both blocks. The data type of anything in the compared memory blocks is irrelevant.
Callers of NdisEqualMemory can be running at IRQL <= DISPATCH_LEVEL if both memory blocks are resident. If either block is pageable, callers must be running at IRQL < DISPATCH_LEVEL.
NdisAllocateMemoryWithTagPriority