MyUdpInfo.h
上传用户:deligs
上传日期:2007-01-08
资源大小:43k
文件大小:1k
- #ifndef __MyUdpINFO_H__
- #define __MyUdpINFO_H__
- #include "LogIt.h"
- class CMyUdpInfo
- {
- // Construction
- public:
- CMyUdpInfo();
- ~CMyUdpInfo();
- BOOL AddressValid();
- BOOL AddressBlank();
- void SplitAddress(CStringArray& AddIt);
- // Attributes
- public:
- HWND m_hwndNotify;
- CLogIt* m_pLogFile;
- HANDLE m_hEvent_Kill;
- HANDLE m_hEvent_Killed;
- HANDLE m_hEvent_GetParametersDone;
- DWORD m_dwMyUdpState;
- CString m_csClientName;
- CString m_csAddress;
- UINT m_uRemotePort;
- // Not to show duplicate message boxes
- BOOL m_baMessageShowing[100];
- // Implementation
- protected:
- };
- #endif