#ifndef MESSAGE_H #define MESSAGE_H #include <stdint.h> typedef struct Message { void* data; uint32_t size; struct Message* next; } Message; #endif