sockpoint.h

来自「是一个ARM上面的PDA开发用的聊天工具,分为客户端与服务器端,纯LINUX环境」· C头文件 代码 · 共 25 行

H
25
字号
// sockpoint.h: interface for the Csockpoint class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_SOCKPOINT_H__292F7496_EEC3_4B57_9859_017AC58A9935__INCLUDED_)
#define AFX_SOCKPOINT_H__292F7496_EEC3_4B57_9859_017AC58A9935__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CSDlg;
class Csock;
class Csockpoint	//套接字链表的节点
{
public:
	showall();	//将所有受到的信息发给其他客户端
	Csock* psock;
	Csockpoint *next;
	Csockpoint(CSDlg *pd);
	virtual ~Csockpoint();

};

#endif // !defined(AFX_SOCKPOINT_H__292F7496_EEC3_4B57_9859_017AC58A9935__INCLUDED_)

⌨️ 快捷键说明

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