ListMenu.h
上传用户:sztlpcb
上传日期:2007-06-09
资源大小:741k
文件大小:2k
源码类别:

IP电话/视频会议

开发平台:

Visual C++

  1. #if !defined(AFX_LISTMENU_H__E2188DBA_43D5_4199_BC42_066BAAA9AB22__INCLUDED_)
  2. #define AFX_LISTMENU_H__E2188DBA_43D5_4199_BC42_066BAAA9AB22__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // ListMenu.h : header file
  7. //
  8. ////////include RTP header////////////
  9. #include "rtpsession.h"
  10. #include "rtppacket.h"
  11. /////////////////////////////////////////////////////////////////////////////
  12. // ListMenu dialog
  13. class ListMenu : public CDialog
  14. {
  15. // Construction
  16. public:
  17. ListMenu(CWnd* pParent = NULL);   // standard constructor
  18. ///Server address///////
  19. char sess_Addr[16];
  20. ///List Box declare//////
  21. // Dialog Data
  22. //{{AFX_DATA(ListMenu)
  23. enum { IDD = IDD_MENU_DIALOG };
  24. CButton m_MenuCancel;
  25. CButton m_MenuPlay;
  26. CButton m_GetMenu;
  27. CButton m_IDOK;
  28. CListBox m_list;
  29. //}}AFX_DATA
  30. // Overrides
  31. // ClassWizard generated virtual function overrides
  32. //{{AFX_VIRTUAL(ListMenu)
  33. protected:
  34. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  35. //}}AFX_VIRTUAL
  36. // Implementation
  37. protected:
  38. // Generated message map functions
  39. //{{AFX_MSG(ListMenu)
  40. afx_msg void OnGetMenu();
  41. afx_msg void OnDMenuPlay();
  42. virtual void OnOK();
  43. afx_msg void OnDMenuCancel();
  44. //}}AFX_MSG
  45. DECLARE_MESSAGE_MAP()
  46. ////RTP variable/////////////
  47. protected:
  48. SOCKET connect_sd;
  49. };
  50. //{{AFX_INSERT_LOCATION}}
  51. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  52. #endif // !defined(AFX_LISTMENU_H__E2188DBA_43D5_4199_BC42_066BAAA9AB22__INCLUDED_)