home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / mslang / zstud1 / unzip.h_ / UNZIP.H
Encoding:
C/C++ Source or Header  |  1994-04-09  |  738 b   |  33 lines

  1. // unzip.h : header file
  2. //
  3.  
  4. /////////////////////////////////////////////////////////////////////////////
  5. // CUnZip dialog
  6.  
  7. class CUnZip : public CDialog
  8. {
  9. // Construction
  10. public:
  11.     CUnZip(CWnd* pParent = NULL);    // standard constructor
  12.  
  13. // Dialog Data
  14.     //{{AFX_DATA(CUnZip)
  15.     enum { IDD = IDD_UNZIP };
  16.         // NOTE: the ClassWizard will add data members here
  17.     //}}AFX_DATA
  18.  
  19. // Implementation
  20. protected:
  21.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  22.  
  23.     // Generated message map functions
  24.     //{{AFX_MSG(CUnZip)
  25.     virtual BOOL OnInitDialog();
  26.     virtual void OnOK();
  27.     afx_msg void OnComment();
  28.     afx_msg void OnChangeEditfilename();
  29.     afx_msg void OnView();
  30.     //}}AFX_MSG
  31.     DECLARE_MESSAGE_MAP()
  32. };
  33.