MediaServerDlg.h
上传用户:hhs829
上传日期:2022-06-17
资源大小:586k
文件大小:2k
源码类别:

DirextX编程

开发平台:

Visual C++

  1. // MediaServerDlg.h : header file
  2. //
  3. #if !defined(AFX_MEDIASERVERDLG_H__2B5DD6BF_53C1_4583_B351_134F4A640F4C__INCLUDED_)
  4. #define AFX_MEDIASERVERDLG_H__2B5DD6BF_53C1_4583_B351_134F4A640F4C__INCLUDED_
  5. #if _MSC_VER > 1000
  6. #pragma once
  7. #endif // _MSC_VER > 1000
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CMediaServerDlg dialog
  10. #define WM_NEW_SOCKET      WM_USER+1
  11. #define BASE_SOCKET_PORT   10025
  12. class CListenSocket;
  13. class CWorkerSocket;
  14. class CMediaServerDlg : public CDialog
  15. {
  16. // Construction
  17. public:
  18. CMediaServerDlg(CWnd* pParent = NULL); // standard constructor
  19. // Dialog Data
  20. //{{AFX_DATA(CMediaServerDlg)
  21. // enum { IDD = IDD_MEDIASERVER_DIALOG };
  22. CStatic m_hostIP;
  23. CStatic m_host;
  24. //}}AFX_DATA
  25. // ClassWizard generated virtual function overrides
  26. //{{AFX_VIRTUAL(CMediaServerDlg)
  27. protected:
  28. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  29. //}}AFX_VIRTUAL
  30. // Implementation
  31. protected:
  32. HICON           m_hIcon;
  33. CListenSocket * m_pListener;
  34. CWorkerSocket * m_pWorkerSock;
  35. CString         m_strSourceFile;
  36. // Generated message map functions
  37. //{{AFX_MSG(CMediaServerDlg)
  38. virtual BOOL OnInitDialog();
  39. afx_msg void OnPaint();
  40. afx_msg HCURSOR OnQueryDragIcon();
  41. afx_msg void OnDestroy();
  42. afx_msg void OnButtonSelect();
  43. afx_msg void ListenOnConnection();
  44. //}}AFX_MSG
  45. DECLARE_MESSAGE_MAP()
  46. };
  47. //{{AFX_INSERT_LOCATION}}
  48. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  49. #endif // !defined(AFX_MEDIASERVERDLG_H__2B5DD6BF_53C1_4583_B351_134F4A640F4C__INCLUDED_)