📄 datastr.h
字号:
#ifndef _datastrh_
#define _datastrh_
typedef struct DataHeader
{
char cbsize,cmd;
int id,toid;
TColor color;
}*PDATAHEADER;
typedef struct PInfo
{
char StrOk[61],Password[15],Name[15];
int Face;
}*PPINFO;
typedef struct AInfo
{
int id;
char Name[15];
int Face;
}*PAINFO;
typedef struct GClientUnit
{
AInfo ai;
}*PGCU;
typedef struct GServerUnit
{
SOCKET sk;
char*SBuffer,*RBuffer;
bool canWrite,Comfirmed;
int SBufferSize,rbytes,sbytes,curSSize,curRSize;
TListItem*li;
AInfo ai;
}*PGSU;
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -