home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / addins / api2help / welcome.h < prev   
C/C++ Source or Header  |  1998-04-02  |  1KB  |  50 lines

  1. #ifndef __WELCOME_H__
  2. #define __WELCOME_H__
  3.  
  4. // Welcome.h : header file
  5. //
  6.  
  7. // Copyright (C) 1992-1998 Microsoft Corporation
  8. // All rights reserved.
  9.  
  10.  
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CWelcome dialog
  13.  
  14. class CWelcome : public CDialog
  15. {
  16. // Construction
  17. public:
  18.     CWelcome(CString APIFunc, CWnd* pParent = NULL);   // standard constructor
  19.  
  20. // Dialog Data
  21.     //{{AFX_DATA(CWelcome)
  22.     enum { IDD = IDD_WELCOME };
  23.     CEdit   m_Selected;
  24.     //}}AFX_DATA
  25.  
  26.  
  27. // Overrides
  28.     // ClassWizard generated virtual function overrides
  29.     //{{AFX_VIRTUAL(CWelcome)
  30.     protected:
  31.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  32.     //}}AFX_VIRTUAL
  33.  
  34. // Implementation
  35. protected:
  36.     CString m_strSelected;
  37.  
  38.     // Generated message map functions
  39.     //{{AFX_MSG(CWelcome)
  40.     virtual BOOL OnInitDialog();
  41.     virtual void OnOK();
  42.     //}}AFX_MSG
  43.     DECLARE_MESSAGE_MAP()
  44. };
  45.  
  46. //{{AFX_INSERT_LOCATION}}
  47. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  48.  
  49. #endif // __WELCOME_H__
  50.