command.h
来自「Visual C++ 网络通信编程实用案例精选 的配套光盘」· C头文件 代码 · 共 22 行
H
22 行
#if !defined(COMMAND_H)
#define COMMAND_H
#include <windows.h>
// 命令栈数据结构
struct CommandDS
{
char szElement[81];
};
// 命令栈链表
struct CommandList
{
struct CommandDS Command;
struct CommandList *pNext;
};
struct CommandList *Add_Command(struct CommandList *pNode,struct CommandDS Command);
void Clear_Command(struct CommandList *pStart);
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?