25'ten fazla konu seçemezsiniz
Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
|
- #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
|