rjw | 1f88458 | 2022-01-06 17:20:42 +0800 | [diff] [blame^] | 1 | #ifndef _LYNQ_MSGQ_H_ |
2 | #define _LYNQ_MSGQ_H_ | ||||
3 | |||||
4 | #include <sys/msg.h> | ||||
5 | #include <sys/ipc.h> | ||||
6 | #include "liblog/liblog.h" | ||||
7 | #include "liblog/lynq_deflog.h" | ||||
8 | #include "http/lynq_http.h" | ||||
9 | |||||
10 | struct mymesg{ | ||||
11 | long int mtype; | ||||
12 | char mtext[512]; | ||||
13 | }; | ||||
14 | |||||
15 | int lynq_msgq_init(char *pathname, int create); | ||||
16 | int lynq_msgq_send(int queueId, struct mymesg *ckxmsg); | ||||
17 | |||||
18 | #endif | ||||
19 |