mysocket.h
来自「AES加密算法对socket通信过程进行加密传输」· C头文件 代码 · 共 52 行
H
52 行
#if !defined(AFX_MYSOCKET_H__6EA14B64_701B_4222_AE44_E93EA76015D8__INCLUDED_)
#define AFX_MYSOCKET_H__6EA14B64_701B_4222_AE44_E93EA76015D8__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CSecCommDlg;
// MySocket.h : header file
//
/////////////////////////////////////////////////////////////////////////////
// MySocket command target
class MySocket : public CSocket
{
// Attributes
public:
CSecCommDlg* m_pMainDlg;
// Operations
public:
MySocket(CSecCommDlg* pMainDlg);
virtual ~MySocket();
// Overrides
public:
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(MySocket)
public:
virtual void OnAccept(int nErrorCode);
virtual void OnClose(int nErrorCode);
virtual void OnReceive(int nErrorCode);
//}}AFX_VIRTUAL
// Generated message map functions
//{{AFX_MSG(MySocket)
// NOTE - the ClassWizard will add and remove member functions here.
//}}AFX_MSG
// Implementation
protected:
};
/////////////////////////////////////////////////////////////////////////////
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_MYSOCKET_H__6EA14B64_701B_4222_AE44_E93EA76015D8__INCLUDED_)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?