1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
| PROCESS_INFORMATION pi;
void executeCommande(string commande)
{
STARTUPINFO si;
ZeroMemory( &si, sizeof(si) );
si.cb = sizeof(si);
ZeroMemory( &pi, sizeof(pi) );
// Start the child process.
CreateProcess( NULL, // No module name (use command line).
(LPSTR)commande.data(), // 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.
// FAIRE UNE GESTION DES ERREURS DE CREATEPROCESS
SetTimer(hwndPrincipale, // handle to main window
IDT_PROCESSUS, // timer identifier
500, // 10-second interval
(TIMERPROC) NULL); // no timer callback
} |
Partager