home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / appwiz / logowiz / template / pressdlg.h < prev    next >
C/C++ Source or Header  |  1998-03-05  |  864b  |  33 lines

  1. // pressdlg.h : header file
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1995 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CPressMeDlg dialog
  15.  
  16.  
  17. class CPressMeDlg : public CDialog
  18. {
  19. protected:
  20.     CBitmapButton m_buttonOk;
  21.     CBitmapButton m_buttonCancel;
  22. public:
  23.     //{{AFX_DATA(CPressMeDlg)
  24.         enum { IDD = IDD_PRESS_ME };
  25.     //}}AFX_DATA
  26.     CPressMeDlg();
  27.  
  28.     BOOL OnInitDialog();
  29.     //{{AFX_MSG(CPressMeDlg)
  30.     //}}AFX_MSG
  31.     DECLARE_MESSAGE_MAP()
  32. };
  33.