Você não pode selecionar mais de 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
|
- #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
|