home *** CD-ROM | disk | FTP | other *** search
/ 3D Graphics Programming for Windows 95 / 3D_Graphics_Programming_for_Windows_95_Microsoft_1996.iso / samples / blobs / indevdlg.h < prev    next >
C/C++ Source or Header  |  1996-02-11  |  861b  |  40 lines

  1. // InDevDlg.h : header file
  2. //
  3.  
  4. /////////////////////////////////////////////////////////////////////////////
  5. // CInpDevDlg dialog
  6.  
  7. class CInpDevDlg : public CDialog
  8. {
  9. // Construction
  10. public:
  11.     CInpDevDlg(CWnd* pParent = NULL);   // standard constructor
  12.  
  13. // Dialog Data
  14.     //{{AFX_DATA(CInpDevDlg)
  15.     enum { IDD = IDD_CONTROLDEV };
  16.         // NOTE: the ClassWizard will add data members here
  17.     //}}AFX_DATA
  18.     int m_iObject;
  19.     int m_iType;
  20.     int m_iDevice;
  21.  
  22.  
  23. // Overrides
  24.     // ClassWizard generated virtual function overrides
  25.     //{{AFX_VIRTUAL(CInpDevDlg)
  26.     protected:
  27.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  28.     //}}AFX_VIRTUAL
  29.  
  30. // Implementation
  31. protected:
  32.  
  33.     // Generated message map functions
  34.     //{{AFX_MSG(CInpDevDlg)
  35.     virtual BOOL OnInitDialog();
  36.     virtual void OnOK();
  37.     //}}AFX_MSG
  38.     DECLARE_MESSAGE_MAP()
  39. };
  40.