不知道您仔细看了CreateProcess这个函数没。
可以查看到下边这些信息:
BOOL CreateProcess(
LPCTSTR lpApplicationName, // name of executable module
LPTSTR lpCommandLine, // command line string
LPSECURITY_ATTRIBUTES lpProcessAttributes, // SD
LPSECURITY_ATTRIBUTES lpThreadAttributes, // SD
BOOL bInheritHandles, // handle inheritance option
DWORD dwCreationFlags, // creation flags
LPVOID lpEnvironment, // new environment block
LPCTSTR lpCurrentDirectory, // current directory name
LPSTARTUPINFO lpStartupInfo, // startup information
LPPROCESS_INFORMATION lpProcessInformation // *_*在这里哦
);
lpProcessInformation 这里就是进程信息,这个参数是一个输出参数,你可以使用一个结构来获取到自己创建的子进程的进程句柄,这样你就可以对你创建的进程做一些操作了,希望我的回复能帮到你。
可怜我现在还么正式会员。。悲剧啊。。