Share via


CEL_MODULE_LOAD

This structure identifies a module that was loaded.

typedef __CEL_MODULE_LOAD {
  HANDLE hProcess;
  HANDLE hModule;
  DWORD dwBase;
  WCHAR szName[0];
} CEL_MODULE_LOAD, *PCEL_MODULE_LOAD;

Members

  • hProcess
    Handle of the process that loaded the module.
  • hModule
    Handle of the loaded module.
  • dwBase
    Base virtual memory address assigned to the loaded module.
  • szName
    Null-terminated string that contains the name of the module that was loaded. The length can be inferred from the length given in the event header, CEL_HEADER.

Requirements

OS Versions: Windows CE 3.0 and later.
Header: Celog.h.

See Also

CEL_HEADER

Last updated on Wednesday, April 13, 2005

© 2005 Microsoft Corporation. All rights reserved.