- 17
- 0
- 约1.85万字
- 约 16页
- 2017-06-05 发布于河南
- 举报
CreateProcess中文详解(国外英文资料)
CreateProcess中文详解(国外英文资料)
CreateProcess
Description:
The WIN32API function CreateProcess is used to create a new process and its main thread, which runs the specified executable.
The function prototype:
BOOL CreateProcess
(
LPCTSTR lpApplicationName,
LPTSTR lpCommandLine,
LPSECURITY_ATTRIBUTES lpProcessAttributes.
LPSECURITY_ATTRIBUTES lpThreadAttributes,
BOOL bInheritHandles,
DWORD dwCreationFlags,
LPVOID lpEnvironment,
LPCTSTR lpCurrentDirectory,
LPSTARTUPINFO LPSTARTUPINFO,
LPPROCESS_INFORMATION lpProcessInformation
);
Parameters:
LpApplicationName: a string that ends with a NULL to specify
原创力文档

文档评论(0)