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

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