HejStoppa process
Jag har skapat en process mha
CreateProcess( NULL, // No module name (use command line).
CommandLine, // 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.
;
nu undrar jag om jag på något sätt kan stoppa denna process innan den är klar och hur jag gör detta?
Tack på förhand