搜索资源列表
PocketMVP_source
- 一个播放器 使用了evc 大家可以参考下 哦 -a player used evc we can refer to the next, oh
CirMMI
- evc写的gps示例程序-evc write gps sample program
showtraf-1.7.0-src
- GetTickCount Sleep CreateEvent CloseHandle ResetEvent SetEvent WaitForSingleObject WaitForMultipleObjects AllocConsole GetStdHandle FreeConsole GetLocalTime WriteConsole
Win32MultiThread_Event
- Event是windows32线程同步中的重要部分,该程序可以帮您理解Event的使用包括automatic模式manual模式下的setevent、pulseevent、resetevent的使用等。-Event is a thread synchronization in windows32 an important part of the program can help you understand the use of Eve
TestEvent
- 事件的使用实例。主要示例了CreateEvent、SetEvent、ResetEvent、WaitForSingleObject函数的使用。-Events use cases. Major example of the CreateEvent, SetEvent, ResetEvent, WaitForSingleObject function to use.
Mutex
- 首先,调用 CreateEvent函数创建一个事件对象,该函数返回一个事件句柄。然后,可以设置(SetEvent)或者复位(ResetEvent)一个事件对象,也可以发一个事件脉冲(PlusEvent),即设置一个事件对象,然后复位它。复位有两种形式:自动复位和人工复位。在创建事件对象时指定复位形式。 自动复位:当对象获得信号后,就释放下一个可用线程(优先级别最高的线程;如果优先级别相同,则等待队列中的第一个线程被释放)。 人工