Share via


CEL_PROCESS_CREATE (Windows CE 5.0)

Send Feedback

This structure identifies a new process that has been created with CreateProcess.

typedef struct __CEL_PROCESS_CREATE {HANDLEhProcess;DWORD dwVMBase;WCHARszName[0];} CEL_PROCESS_CREATE, *PCEL_PROCESS_CREATE;

Members

  • hProcess
    Handle of the created process. Corresponds to the hProcess parameter of the PROCESS_INFORMATION structure for CreateProcess.
  • dwVMBase
    Base address for the virtual memory slot assigned to the new process.
  • szName
    Null-terminated string containing the name of the launched process that is passed to CreateProcess. The length of the name can be inferred from the length given in the event header, CEL_HEADER. If this parameter is NULL, the event occurred due to the OpenProcess call.

Requirements

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

See Also

CEL_HEADER | CEL_EXTRA_PROCESS_INFO | PROCESS_INFORMATION | CreateProcess | OpenProcess

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.