在线笔记
全部博文(596)
发布时间:2014-06-24 14:52:23
int DrvCopy(){ int a; .... int c;// C2275,变量在函数开头定义}......【阅读全文】
发布时间:2014-06-20 17:46:03
http://msdn.microsoft.com/en-us/library/kdzttdcb(v=vs.71).aspxCreate a thread.uintptr_t _beginthread( void( __cdecl *start_address )( void * ), unsigned stack_size, void *arglist );.........【阅读全文】
发布时间:2014-06-18 10:51:15
先设置事件再等待该事件,结果是等到事件。也就是事件没有被关闭,设置了的事件一直有效DWORD SetEventAndWaitSameEvent(){ HANDLE event; DWORD obj_ret; event = CreateEvent(NULL, FALSE, FA.........【阅读全文】
发布时间:2014-06-17 15:40:47
Terminating a process has the following results: Any remaining threads in the process are marked for termination. Any resources allocated by the process are freed. All kernel objec.........【阅读全文】