您好,我有以下代码,但它没有按预期工作,无法弄清楚问题是什么。
基本上,我正在执行一个进程(一个 .NET 进程)并将其传递命令行参数,它由 CreateProcess() 成功执行,但 CreateProcess() 没有传递命令行参数
我在这里做错了什么?
int main(int argc, char* argv[])
{
PROCESS_INFORMATION ProcessInfo; //This is what we get as an [out] parameter
STARTUPINFO StartupInfo; //This is an [in] parameter
ZeroMemory(&StartupInfo, sizeof(StartupInfo));
StartupInfo.cb = sizeof StartupInfo ; //Only compulsory field
LPTSTR cmdArgs = "name@example.com";
if(CreateProcess("D:\\email\\smtp.exe", cmdArgs,
NULL,NULL,FALSE,0,NULL,
NULL,&StartupInfo,&ProcessInfo))
{
WaitForSingleObject(ProcessInfo.hProcess,INFINITE);
CloseHandle(ProcessInfo.hThread);
CloseHandle(ProcessInfo.hProcess);
printf("Yohoo!");
}
else
{
printf("The process could not be started...");
}
return 0;
}
编辑:嘿,还有一件事,如果我cmdArgs
像这样通过我的:
// a space as the first character
LPTSTR cmdArgs = " name@example.com";
然后我得到错误,然后 CreateProcess 返回TRUE
但我的目标进程没有执行。
Object reference not set to an instance of an object