MyUdpThread.h
上传用户:deligs
上传日期:2007-01-08
资源大小:43k
文件大小:1k
- #if !defined(MYUDP_THREAD_H_INCLUDED_)
- #define MYUDP_THREAD_H_INCLUDED_
- #include "LogIt.h"
- // MyUdpThread.h : interface of the controlling function of the MyUdp communication thread
- //
- struct MessageInfo
- {
- HANDLE hEvent_GetParametersOK;
- HWND hwndShowMsg;
- BOOL* pbMsgShowing;
- CString strMsgText;
- CString strMsgTitle;
- UINT uMsgStyle;
- };
- // Controlling function for the MyUdp communication thread.
- UINT MyUdpThreadProc(LPVOID pParam /* CMyUdpInfo ptr */);
- UINT ThreadMessageBox(LPVOID pParam /* MsgInfo ptr */);
- #endif // !defined(MYUDP_THREAD_H_INCLUDED_)