blob: 784e077598855d6066f146ffa8d323c9be173dba [file] [log] [blame]
rjw1f884582022-01-06 17:20:42 +08001#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
10struct mymesg{
11 long int mtype;
12 char mtext[512];
13};
14
15int lynq_msgq_init(char *pathname, int create);
16int lynq_msgq_send(int queueId, struct mymesg *ckxmsg);
17
18#endif
19