能力值:
( LV7,RANK:100 )
|
-
-
2 楼
SECURITY_ATTRIBUTES SecurityAttributes;
SecurityAttributes.nLength = sizeof(SECURITY_ATTRIBUTES);
SecurityAttributes.lpSecurityDescriptor = NULL;
SecurityAttributes.bInheritHandle = TRUE;
m_hEvent = CreateEvent(&SecurityAttributes, FALSE, FALSE, NULL);
同时 CreateProcess 的参数 BOOL bInheritHandles 设置为 TRUE, 发生异常的时候, 子程序激发事件, 并且将内容写入共享内存或者管道. 主程序读取.
|
能力值:
( LV2,RANK:10 )
|
-
-
3 楼
原来是这样干的,谢谢
|
|
|