IOCTL_KLIB_GET_POOL_STATE (Compact 2013)

3/28/2014

Deprecated.

This I/O control message retrieves the state of the paging pools. Send this message with KernelLibIoControl.

Syntax

BOOL KernelLibIoControl(
    HANDLE hDevice,           // handle to the device
    DWORD dwIoControlCode,    // use IOCTL_KLIB_GET_POOL_STATE
    LPVOID lpInBuffer,        // pointer to input buffer
    DWORD nInBufferSize,      // input buffer size
    LPVOID lpOutBuffer,       // pointer to output buffer
    DWORD nOutBufferSize,     // output buffer size
    LPDWORD lpBytesReturned   // number of bytes returned
);

Parameters

  • hDevice
    [in] Handle to the device.
  • dwIoControlCode
    [in] The control code for the operation. Use IOCTL_KLIB_GET_POOL_STATE for this operation.
  • lpInBuffer
    [in] Set to NULL.
  • nInBufferSize
    [in] Set to zero
  • lpOutBuffer
    [out] Pointer to the NKPagePoolState structure, which receives the state of the loader page pool and the state of the file page pool.
  • nOutBufferSize
    [out] Size of the NKPagePoolState structure.
  • lpBytesReturned
    [in][out] Set to NULL.

Requirements

Header

pkfuncs.h

See Also

Reference

Kernel I/O Controls
KernelLibIoControl
PagePoolState