You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #ifndef LICK_MESSAGE_H
- #define LICKS_MESSAGE_H
-
- #define MSG_REPLY 1
- #define MSG_CHAR_ARRAY 2
-
-
- struct licks_message {
- int type;
- union {
- char char_array[32];
- };
- };
-
- #endif
|