Embedded Wireless Framework
ewf_message.h
Go to the documentation of this file.
1 /************************************************************************/
10 #ifndef __ewf_message__h__included__
11 #define __ewf_message__h__included__
12 
13 #include "ewf.h"
14 
15 #ifdef __cplusplus
16 extern "C" {
17 #endif
18 
19 /************************************************************************/
27 {
28  uint8_t* buffer_ptr;
29  uint32_t buffer_length;
30  ewf_allocator* allocator_ptr;
31 };
32 
33 /************************************************************************/
37 #ifdef __cplusplus
38 }
39 #endif
40 
41 #endif /* __ewf_message__h__included__ */
The Embedded Wireless Framework.
The allocator structure definition.
Definition: ewf_allocator.h:27
The interface message structure definition.
Definition: ewf_message.h:27