int
dbgsysExec(char *cmdLine)
{
PROCESS_INFORMATION pi;
STARTUPINFO si; int ret;
if (cmdLine == 0) { return SYS_ERR;
}
memset(&si, 0, sizeof(si));
si.cb = sizeof(si);
ret = CreateProcess(0, /* executable name */
cmdLine, /* command line */ 0, /* process security attribute */ 0, /* thread security attribute */ TRUE, /* inherits system handles */ 0, /* normal attached process */ 0, /* environment block */ 0, /* inherits the current directory */
&si, /* (in) startup information */
&pi); /* (out) process information */
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.