#ifndef MESSAGING_H #define MESSAGING_H typedef struct { bool present; int type; int size; char* body; } MessageData; #endif