Thread.h
上传用户:popouu88
上传日期:2013-02-11
资源大小:2894k
文件大小:1k
源码类别:

IP电话/视频会议

开发平台:

Visual C++

  1. // Thread.h: interface for the CThread class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #ifndef __THREAD_H__
  5. #define __THREAD_H__
  6. class CThread  
  7. {
  8. public:
  9.            CThread();
  10. virtual ~CThread();
  11. static   bool Run( void ( * OnRun )( void * pContext ) , void * pContext );
  12. protected:
  13. struct INFO
  14. {
  15. void ( * OnRun )( void * pContext );
  16. void * p;
  17. };
  18. static   unsigned long __stdcall OnRun( void * pContext );
  19. };
  20. #endif // !defined(AFX_THREAD_H__6F8D331B_AAB7_4C79_B608_104A11A31A13__INCLUDED_)