communication.h.svn-base
来自「可以作为Linux教学用的程序」· SVN-BASE 代码 · 共 22 行
SVN-BASE
22 行
/* 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 + =
减小字号Ctrl + -
显示快捷键?