📄 socklist.h
字号:
// socklist.h: interface for the Csocklist class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_SOCKLIST_H__D7F9655F_0EAC_4F30_8A2F_D42A42979698__INCLUDED_)
#define AFX_SOCKLIST_H__D7F9655F_0EAC_4F30_8A2F_D42A42979698__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CSDlg;
class Csock;
class Csockpoint;
class Csocklist //用链表穿起来
{
public:
showall(); //将所有受到的信息发给其他客户端
delone(Csock*); //连接关闭删除节点
Csockpoint * addnew(CSDlg*); //添加新节点
Csockpoint * hand;
Csockpoint * now;
Csockpoint * end;
Csocklist(CSDlg *pd);
virtual ~Csocklist();
};
#endif // !defined(AFX_SOCKLIST_H__D7F9655F_0EAC_4F30_8A2F_D42A42979698__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -