- 1、本文档共16页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
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 an executable module.
This string can make the absolute path to the executable module, also can be a relative path, in the latter case, the function USES the current drive and directory path to build an executable module.
This parameter can be NULL, in this case, the name of the executable module must be in the front of the lpCommandLine parameter and separated by Spaces and the back of the characters.
This specified module can be a Win32 application. If the appropriate subsystem is available on the current computer, it can also be other types of modules (such as ms-dos or OS / 2).
In Windows NT, if the executable module is a 16-bit applications, then this parameter should be set to NULL and should in the lpCommandLine parameter specifies the name of the executable module. The 16-bit application runs on a DOS virtual machine, or Windows (WOW) on Win32.
LpCommandLine: points to a NULL end to specify the command line to run.
This parameter can be empty, so the function will use the string specified by the parameter as the command line for the program to run.
If the lpApplicationName and lpCommandLine parameters are not empty, the lpApplicationName parameter specifies the module to be run, and the lpCommandLine parameter specifies the command line of the module that will be run. The new running process can get the entire command line using the GetCommandLine function. The C language prog
您可能关注的文档
- 2014年春季西南大学第一次学前心思学功课谜底(国外英语资料).doc
- 2014年春季一年级下册数学期末试卷剖析(国外英语资料).doc
- 2014年最新100句经典滑稽短语(国外英语资料).doc
- 2014年福建省莆田市通俗话温习领导——拼音汉字对比朗诵一(国外英语资料).doc
- 2014年的大连学区划分(国外英语资料).doc
- 2014年莆田市教员通俗话温习领导——拼音汉字对比朗诵二(国外英语资料).doc
- 2014年高三英语二模翻译部分keys(国外英语资料).doc
- 2014年高考语法专题练习 数词与主谓不合(国外英语资料).doc
- 2014春《中外教育管理史》作业(国外英语资料).doc
- 2014春东财《通用管帐绳尺》在线功课三(谜底)(国外英语资料).doc
文档评论(0)