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

📄 communication.h

📁 可以作为Linux教学用的程序
💻 H
字号:
/* communication.h */#ifndef COMMUNICATION_H_#define COMMUNICATION_H_#define PERM 0666#define C2S_KEY 9999#define S2C_KEY 9998#define MAX_MSG_LEN 512typedef struct msg_data{	long type;	char text[MAX_MSG_LEN];} msg_data_t;int communication_init(void);int send_msg(const char * msg);int recv_msg(char * buf, int max_len);#endif /* COMMUNICATION_H_ */

⌨️ 快捷键说明

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