home *** CD-ROM | disk | FTP | other *** search
/ Team Palmtops 7 / Palmtops_numero07.iso / WinCE / SDKWindowsCE / HandHeldPCPro30 / sdk.exe / Jupiter SDK / data1.cab / MFC_Samples / chatter / setupdlg.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-02-19  |  1.3 KB  |  51 lines

  1. // setupdlg.h : header file
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1999 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. // CSetupDlg dialog
  15.  
  16. class CSetupDlg : public CDialog
  17. {
  18. // Construction
  19. public:
  20.     CSetupDlg(CWnd* pParent = NULL);   // standard constructor
  21.  
  22. // Dialog Data
  23.     //{{AFX_DATA(CSetupDlg)
  24. #if defined(_WIN32_WCE_PSPC)
  25.     enum { IDD = IDD_SETUP_PSPC };
  26. #else
  27.     enum { IDD = IDD_SETUP };
  28. #endif
  29.     int        m_nChannel;
  30.     CString    m_strHandle;
  31.     CString    m_strServer;
  32.     //}}AFX_DATA
  33.  
  34.  
  35. // Overrides
  36.     // ClassWizard generated virtual function overrides
  37.     //{{AFX_VIRTUAL(CSetupDlg)
  38.     protected:
  39.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  40.     //}}AFX_VIRTUAL
  41.  
  42. // Implementation
  43. protected:
  44.  
  45.     // Generated message map functions
  46.     //{{AFX_MSG(CSetupDlg)
  47.         // NOTE: the ClassWizard will add member functions here
  48.     //}}AFX_MSG
  49.     DECLARE_MESSAGE_MAP()
  50. };
  51.