Share via


IOCTL_CELOG_IMPORT (Compact 2013)

10/16/2014

This I/O control message is used by a CeLog DLL to request information about the kernel. Send this message with KernelLibIoControl.

Syntax

BOOL KernelLibIoControl(
    HANDLE hDevice,           // handle to the DLL
    DWORD dwIoControlCode,    // use IOCTL_CELOG_IMPORT
    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 DLL. Must be set to KMOD_CELOG.
  • dwIoControlCode
    [in] The control code for the operation. Use IOCTL_CELOG_IMPORT for this operation.
  • lpInBuffer
    [in] Pointer to a buffer that contains the CeLogImportTable_V5 structure. The dwVersion field of CeLogImportTable should be initialized before calling IOCTL_CELOG_IMPORT.
  • nInBufferSize
    [in] Set to sizeof(CeLogImportTable_V5), the size of lpInBuffer.
  • lpOutBuffer
    [out] Set to NULL.
  • nOutBufferSize
    [out] Set to zero.
  • lpBytesReturned
    [out] Set to NULL.

Return Values

Returns TRUE if successful; otherwise, returns FALSE.

Requirements

Header

pkfuncs.h

See Also

Reference

Tools IOCTLs
IOCTL_CELOG_REGISTER

Other Resources

CeLogImportTable_V5