111,097
社区成员




STARTUPINFO stStartup;
RtlZeroMemory(&stStartup,sizeof(stStartup));
stStartup.dwFlags = STARTF_USESHOWWINDOW;
stStartup.wShowWindow = SW_HIDE;
CreateProcess(NULL,path,NULL,NULL,TRUE,NORMAL_PRIORITY_CLASS,NULL,NULL,&stStartup,&stProcess);