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

  1. // Progress.h : main header file for the PROGRESS DLL
  2.  
  3. #if !defined(AFX_PROGRESS_H__7A5287D3_3F7C_11D3_A911_00104B9A4FD0__INCLUDED_)
  4. #define AFX_PROGRESS_H__7A5287D3_3F7C_11D3_A911_00104B9A4FD0__INCLUDED_
  5.  
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9.  
  10. #ifndef __AFXWIN_H__
  11.     #error include 'stdafx.h' before including this file for PCH
  12. #endif
  13.  
  14. #include "resource.h"        // main symbols
  15. #include "progressDlg.h"
  16.  
  17. extern CString g_text1;
  18. extern CString g_text2;
  19. extern long g_xpos;
  20. extern long g_ypos;
  21. extern long g_width;
  22. extern long g_height;
  23. extern long g_begin;
  24. extern long g_end;
  25. extern long * g_pBasicVar;
  26.  
  27. extern ProgressDlg * g_pProgBar;                        // used to hold pointer to dialog box outside of new thread
  28.  
  29. /////////////////////////////////////////////////////////////////////////////
  30. // CProgressApp
  31. // See Progress.cpp for the implementation of this class
  32. //
  33.  
  34. class CProgressApp : public CWinApp
  35. {
  36. public:
  37.     CProgressApp();
  38.  
  39. // Overrides
  40.     // ClassWizard generated virtual function overrides
  41.     //{{AFX_VIRTUAL(CProgressApp)
  42.     //}}AFX_VIRTUAL
  43.  
  44.     //{{AFX_MSG(CProgressApp)
  45.         // NOTE - the ClassWizard will add and remove member functions here.
  46.         //    DO NOT EDIT what you see in these blocks of generated code !
  47.     //}}AFX_MSG
  48.     DECLARE_MESSAGE_MAP()
  49. };
  50.  
  51.  
  52. /////////////////////////////////////////////////////////////////////////////
  53.  
  54. //{{AFX_INSERT_LOCATION}}
  55. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  56.  
  57. #endif // !defined(AFX_PROGRESS_H__7A5287D3_3F7C_11D3_A911_00104B9A4FD0__INCLUDED_)
  58.