Files
AwesomePolytech/OSs/lab6/common.h
2025-10-10 14:06:34 +03:00

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