Thread.h
资源名称:视频会议系统.rar [点击查看]
上传用户:popouu88
上传日期:2013-02-11
资源大小:2894k
文件大小:1k
源码类别:
IP电话/视频会议
开发平台:
Visual C++
- // Thread.h: interface for the CThread class.
- //
- //////////////////////////////////////////////////////////////////////
- #ifndef __THREAD_H__
- #define __THREAD_H__
- class CThread
- {
- public:
- CThread();
- virtual ~CThread();
- static bool Run( void ( * OnRun )( void * pContext ) , void * pContext );
- protected:
- struct INFO
- {
- void ( * OnRun )( void * pContext );
- void * p;
- };
- static unsigned long __stdcall OnRun( void * pContext );
- };
- #endif // !defined(AFX_THREAD_H__6F8D331B_AAB7_4C79_B608_104A11A31A13__INCLUDED_)