MyUdpInfo.h
上传用户:deligs
上传日期:2007-01-08
资源大小:43k
文件大小:1k
源码类别:

网络编程

开发平台:

Visual C++

  1. #ifndef __MyUdpINFO_H__
  2. #define __MyUdpINFO_H__
  3. #include "LogIt.h"
  4. class CMyUdpInfo
  5. {
  6. // Construction
  7. public:
  8. CMyUdpInfo();
  9. ~CMyUdpInfo();
  10. BOOL AddressValid();
  11. BOOL AddressBlank();
  12. void SplitAddress(CStringArray& AddIt);
  13. // Attributes
  14. public:
  15. HWND m_hwndNotify;
  16. CLogIt* m_pLogFile;
  17. HANDLE m_hEvent_Kill;
  18. HANDLE m_hEvent_Killed;
  19. HANDLE m_hEvent_GetParametersDone;
  20. DWORD m_dwMyUdpState;
  21. CString m_csClientName;
  22. CString m_csAddress;
  23. UINT m_uRemotePort;
  24. // Not to show duplicate message boxes
  25. BOOL m_baMessageShowing[100];
  26. // Implementation
  27. protected:
  28. };
  29. #endif