home *** CD-ROM | disk | FTP | other *** search
/ HTBasic 9.3 / HTBasic 9.3.iso / 93win / data1.cab / DLL_Toolkit / Source / HTBSwitch / DialogThread.h < prev    next >
Encoding:
C/C++ Source or Header  |  2005-03-02  |  1.5 KB  |  59 lines

  1. /*****************************************************
  2. HTBSwitch.dll
  3.  
  4. DialogThread.h
  5.  
  6. Copyright 1999 TransEra Corporation
  7. *****************************************************/
  8.  
  9. #if !defined(AFX_DIALOGTHREAD_H__30E73721_1443_11D3_A910_00104B9A4FD0__INCLUDED_)
  10. #define AFX_DIALOGTHREAD_H__30E73721_1443_11D3_A910_00104B9A4FD0__INCLUDED_
  11.  
  12. #if _MSC_VER > 1000
  13. #pragma once
  14. #endif // _MSC_VER > 1000
  15.  
  16.  
  17. /////////////////////////////////////////////////////////////////////////////
  18. // DialogThread thread
  19.  
  20. class DialogThread : public CWinThread
  21. {
  22.     DECLARE_DYNCREATE(DialogThread)
  23. protected:
  24.     DialogThread();           // protected constructor used by dynamic creation
  25.  
  26. // Attributes
  27. public:
  28.  
  29. // Operations
  30. public:
  31.  
  32. // Overrides
  33.     // ClassWizard generated virtual function overrides
  34.     //{{AFX_VIRTUAL(DialogThread)
  35.     public:
  36.     virtual BOOL InitInstance();
  37.     afx_msg void OnPaint();
  38.     virtual int ExitInstance();
  39.     //}}AFX_VIRTUAL
  40.  
  41. // Implementation
  42. protected:
  43.     virtual ~DialogThread();
  44.  
  45.     // Generated message map functions
  46.     //{{AFX_MSG(DialogThread)
  47.         // NOTE - the ClassWizard will add and remove member functions here.
  48.     //}}AFX_MSG
  49.  
  50.     DECLARE_MESSAGE_MAP()
  51. };
  52.  
  53. /////////////////////////////////////////////////////////////////////////////
  54.  
  55. //{{AFX_INSERT_LOCATION}}
  56. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  57.  
  58. #endif // !defined(AFX_DIALOGTHREAD_H__30E73721_1443_11D3_A910_00104B9A4FD0__INCLUDED_)
  59.