Important:
This is retired content. This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This content may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.
A version of this page is also available for
4/8/2010

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

Syntax

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 hProcessparameter of the PROCESS_INFORMATIONstructure for CreateProcess.

dwVMBase

Base address for the virtual memory 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 OpenProcesscall.

Requirements

Header celog.h
Windows Embedded CE Windows CE 3.0 and later
Windows Mobile Windows Mobile Version 5.0 and later

See Also