#ifndef BTMALLOC_H #define BTMALLOC_H struct BTMALLOC_MSG{ char msg[200]; char used; }; struct BTMALLOC_STATUS { unsigned long total; unsigned long nb; unsigned long current; }; struct BTMALLOC{ BTMALLOC_MSG msgs[20]; BTMALLOC_STATUS status[2]; }; #endif