摘要: #include <iostream>#include <stdio.h>#include <windows.h>using namespace std;HANDLE g_hEvent;DWORD WINAPI Fun(LPVOID lpParamter){ while(1) { WaitForSingleObject(g_hEvent, INFINITE); cout<<"Fun display!"<<endl; Sleep(1000); ... 阅读全文
posted @ 2013-04-14 14:46 renly2013 阅读(1416) 评论(0) 推荐(0)