DlAllocatePool - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// dispmprt.h

PVOID DlAllocatePool(
  IN PVOID        DeviceHandle,
  IN VP_POOL_TYPE PoolType,
  IN SIZE_T       NumberOfBytes,
  IN ULONG        Tag
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-dispmprt-dlallocatepool)

DlAllocatePool function

Description

Allocates pool memory of the specified type.

Parameters

DeviceHandle

A handle to the device.

PoolType

Specifies the type of pool memory to allocate.

NumberOfBytes

Specifies the number of bytes to allocate.

Tag

Return value

This function returns PVOID.

Remarks

See also