15 lines
203 B
C
15 lines
203 B
C
#ifndef COMMON_H_
|
|
#define COMMON_H_
|
|
|
|
#define MQ_KEY1 1234L
|
|
#define MQ_KEY2 2345L
|
|
#define MAXMESGDATA 4096
|
|
|
|
struct msg {
|
|
long mesg_len;
|
|
long mesg_type;
|
|
char mesg_data[MAXMESGDATA];
|
|
};
|
|
|
|
#endif
|