rcvsocket.h

来自「使用UDP模拟可靠传输协议rdt2.0。使用两个程序」· C头文件 代码 · 共 53 行

H
53
字号
#if !defined(AFX_RCVSOCKET_H__6650E948_5DBC_41A1_B8E8_F3AB4302E8AC__INCLUDED_)
#define AFX_RCVSOCKET_H__6650E948_5DBC_41A1_B8E8_F3AB4302E8AC__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// RcvSocket.h : header file
//



/////////////////////////////////////////////////////////////////////////////
// CRcvSocket command target

class CRcvSocket : public CSocket
{
// Attributes
public:

// Operations
public:
	CRcvSocket();
	virtual ~CRcvSocket();

// Overrides
public:
	void SetNotifyWnd(HWND hNtf);
	void SetNotifyMsg(UINT uMsg);
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CRcvSocket)
	public:
	virtual void OnReceive(int nErrorCode);
	//}}AFX_VIRTUAL

	// Generated message map functions
	//{{AFX_MSG(CRcvSocket)
		// NOTE - the ClassWizard will add and remove member functions here.
	//}}AFX_MSG

// Implementation
protected:
private:
	HWND hNotifyWnd;
	UINT uNotifyMsg;
};

/////////////////////////////////////////////////////////////////////////////

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_RCVSOCKET_H__6650E948_5DBC_41A1_B8E8_F3AB4302E8AC__INCLUDED_)

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?