home *** CD-ROM | disk | FTP | other *** search
/ ftp.funduc.com / 2014.08.ftp.funduc.com.tar / ftp.funduc.com / fshedcode102502.zip / HexDumpDlg.h < prev    next >
C/C++ Source or Header  |  2001-11-06  |  1KB  |  50 lines

  1. #if !defined(AFX_HEXDUMPDLG_H__D122E667_D2E1_11D5_B58D_00B0D0719D70__INCLUDED_)
  2. #define AFX_HEXDUMPDLG_H__D122E667_D2E1_11D5_B58D_00B0D0719D70__INCLUDED_
  3.  
  4. #if _MSC_VER > 1000
  5. #pragma once
  6. #endif // _MSC_VER > 1000
  7. // HexDumpDlg.h : header file
  8. //
  9.  
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CHexDumpDlg dialog
  12.  
  13. class CHexDumpDlg : public CDialog
  14. {
  15. // Construction
  16. public:
  17.     CHexDumpDlg(CWnd* pParent = NULL);   // standard constructor
  18.  
  19. // Dialog Data
  20.     //{{AFX_DATA(CHexDumpDlg)
  21.     enum { IDD = IDD_HEXDUMPDIALOG };
  22.     int        m_nExportTo;
  23.     CString    m_strEndOffset;
  24.     CString    m_strStartOffset;
  25.     //}}AFX_DATA
  26.  
  27.    int      m_nStartOffset, m_nEndOffset;
  28.  
  29. // Overrides
  30.     // ClassWizard generated virtual function overrides
  31.     //{{AFX_VIRTUAL(CHexDumpDlg)
  32.     protected:
  33.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  34.     //}}AFX_VIRTUAL
  35.  
  36. // Implementation
  37. protected:
  38.  
  39.     // Generated message map functions
  40.     //{{AFX_MSG(CHexDumpDlg)
  41.     virtual BOOL OnInitDialog();
  42.     //}}AFX_MSG
  43.     DECLARE_MESSAGE_MAP()
  44. };
  45.  
  46. //{{AFX_INSERT_LOCATION}}
  47. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  48.  
  49. #endif // !defined(AFX_HEXDUMPDLG_H__D122E667_D2E1_11D5_B58D_00B0D0719D70__INCLUDED_)
  50.