EnumSession.h
上传用户:royluo
上传日期:2007-01-05
资源大小:1584k
文件大小:2k
源码类别:

游戏

开发平台:

Visual C++

  1. #if !defined(AFX_ENUMSESSION_H__5BE28FA1_6DD2_11D2_AA8A_444553540000__INCLUDED_)
  2. #define AFX_ENUMSESSION_H__5BE28FA1_6DD2_11D2_AA8A_444553540000__INCLUDED_
  3. #if _MSC_VER >= 1000
  4. #pragma once
  5. #endif // _MSC_VER >= 1000
  6. // EnumSession.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CEnumSession dialog
  10. class CEnumSession : public CDialog
  11. {
  12. // Construction
  13. public:
  14.     CEnumSession(LPDIRECTPLAY2 pIDP, GUID *pSessionGuid /* OUT */);
  15. // Dialog Data
  16.     //{{AFX_DATA(CEnumSession)
  17.     enum { IDD = IDD_ENUMSESSIONS_DIALOG };
  18.     CStatic m_Static;
  19.     CListBox    m_ListBox;
  20.     //}}AFX_DATA
  21. // Overrides
  22.     // ClassWizard generated virtual function overrides
  23.     //{{AFX_VIRTUAL(CEnumSession)
  24.     protected:
  25.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  26.     //}}AFX_VIRTUAL
  27. // Implementation
  28. protected:
  29.     // Generated message map functions
  30.     //{{AFX_MSG(CEnumSession)
  31.     afx_msg void OnRefresh();
  32.     virtual void OnCancel();
  33.     virtual void OnOK();
  34.     virtual BOOL OnInitDialog();
  35.     //}}AFX_MSG
  36.     DECLARE_MESSAGE_MAP()
  37. private:
  38.     // Methods.
  39.     void EnumSession();
  40.     void EmptyListBox();
  41.     // Members.
  42.     LPDIRECTPLAY2   m_pIDP;
  43.     GUID   *m_pSessionGuid;
  44.     DWORD   m_dwTimeOut;
  45. };
  46. //{{AFX_INSERT_LOCATION}}
  47. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  48. #endif // !defined(AFX_ENUMSESSION_H__5BE28FA1_6DD2_11D2_AA8A_444553540000__INCLUDED_)