home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 2003 May / VPR0305.ISO / OLS / TAR32223 / tar32223.lzh / tar32_2 / src / dlg.h < prev    next >
C/C++ Source or Header  |  2003-01-17  |  416b  |  19 lines

  1. #include <wtypes.h>
  2.  
  3. class CTar32StatusDialog
  4. {
  5. public:
  6.     CTar32StatusDialog();
  7.     ~CTar32StatusDialog();
  8.     HWND Create(HWND hParent);
  9.     void Destroy();
  10.     bool is_cancel();
  11. private:
  12.     bool m_cancel;
  13.     static /*DWORD*/ void _cdecl ThreadFunc(LPVOID param);
  14.     static BOOL CALLBACK WindowFunc(HWND hwnd, UINT mes, WPARAM wParam, LPARAM lParam);
  15.     volatile HWND m_hWnd;
  16.     HWND m_hParentWnd;
  17.     HANDLE m_hThread;
  18. };
  19.