home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1998 January / Pcwk0198.iso / Zadarmo / HEXVIEW / SRC / GOTODLG.H < prev    next >
C/C++ Source or Header  |  1996-08-01  |  1KB  |  50 lines

  1. /* ---------------------------------------------------------------------------
  2.  
  3.    This code can be used as you wish but without warranties as to performance 
  4.    of merchantability or any other warranties whether expressed or implied.
  5.    
  6.      Written by Mike Funduc, Funduc Software Inc. 8/1/96
  7.  
  8.      To download the code and more useful utilities (including Search and
  9.      Replace for Windows 95/NT, 3.1x) go to:
  10.      http://home.sprynet.com/sprynet/funduc  or
  11.      http://ourworld.compuserve.com/homepages/funduc
  12.  
  13. ----------------------------------------------------------------------------*/
  14.  
  15. // GotoDlg.h : header file
  16. //
  17.  
  18. /////////////////////////////////////////////////////////////////////////////
  19. // CGotoDlg dialog
  20.  
  21. class CGotoDlg : public CDialog
  22. {
  23. // Construction
  24. public:
  25.     CGotoDlg(CWnd* pParent = NULL);   // standard constructor
  26.  
  27. // Dialog Data
  28.     //{{AFX_DATA(CGotoDlg)
  29.     enum { IDD = IDD_GOTO };
  30.     long    m_lNewOffset;
  31.     //}}AFX_DATA
  32.  
  33.  
  34. // Overrides
  35.     // ClassWizard generated virtual function overrides
  36.     //{{AFX_VIRTUAL(CGotoDlg)
  37.     protected:
  38.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  39.     //}}AFX_VIRTUAL
  40.  
  41. // Implementation
  42. protected:
  43.  
  44.     // Generated message map functions
  45.     //{{AFX_MSG(CGotoDlg)
  46.         // NOTE: the ClassWizard will add member functions here
  47.     //}}AFX_MSG
  48.     DECLARE_MESSAGE_MAP()
  49. };
  50.