⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 socklist.h

📁 是一个ARM上面的PDA开发用的聊天工具,分为客户端与服务器端,纯LINUX环境编译,简单好用
💻 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 + -