CEL_PROCESS_CREATE
This structure identifies a new process that has been created with CreateProcess.
typedef struct __CEL_PROCESS_CREATE {
HANDLE hProcess;
DWORD dwVMBase;
WCHAR szName[0];
} CEL_PROCESS_CREATE, *PCEL_PROCESS_CREATE;
Members
- hProcess
Handle of the created process. Corresponds to the hProcess parameter of the LPPROCESS_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 | CreateProcess | OpenProcess
Last updated on Wednesday, April 13, 2005
© 2005 Microsoft Corporation. All rights reserved.