qwsocket.h
来自「跳棋 为初次学习游戏编程的朋友提供参考」· C头文件 代码 · 共 56 行
H
56 行
#if !defined(AFX_qwSocket_H__98398EA1_344E_11D5_8041_444553540000__INCLUDED_)
#define AFX_qwSocket_H__98398EA1_344E_11D5_8041_444553540000__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// qwSocket.h : header file
//
/////////////////////////////////////////////////////////////////////////////
// CqwSocket command target
class CqwSocket : public CAsyncSocket
{
// Attributes
public:
void SetParent(CWnd* pWnd);
// Operations
public:
CqwSocket();
virtual ~CqwSocket();
// Overrides
public:
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CqwSocket)
public:
virtual void OnAccept(int nErrorCode);
virtual void OnClose(int nErrorCode);
virtual void OnConnect(int nErrorCode);
virtual void OnSend(int nErrorCode);
virtual void OnReceive(int nErrorCode);
//}}AFX_VIRTUAL
// Generated message map functions
//{{AFX_MSG(CqwSocket)
// NOTE - the ClassWizard will add and remove member functions here.
//}}AFX_MSG
// Implementation
protected:
private:
CWnd * m_pWnd;
};
/////////////////////////////////////////////////////////////////////////////
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_qwSocket_H__98398EA1_344E_11D5_8041_444553540000__INCLUDED_)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?