STARTUPINFO si;
 ROCESS_INFORMATION pi;
ZeroMemory( [$si, sizeof(si) )]
si.cb = sizeof(si);
ZeroMemory( [$pi, sizeof(pi) )]
// Start the child process.
int proFlag= CreateProcess( NULL, // No module name (use command line).
TEXT("MyChildProcess"), // Command line.
NULL, // Process handle not inheritable.
NULL, // Thread handle not inheritable.
FALSE, // Set handle inheritance to FALSE.
0, // No creation flags.
NULL, // Use parent's environment block.
NULL, // Use parent's starting directory.
&si, // Pointer to STARTUPINFO structure.
[$pi )] // Pointer to PROCESS_INFORMATION structure.
if(proFlag==0)
{
printf( "CreateProcess failed (%d).\n", GetLastError() );
}
else
{
WinExec("C:\\Program Files\\intel_a\\caowei\\Debug\\hexinsuanfa.exe",SW_SHOW);
}
现在是这样,应该怎么改呢?
:) |