xMessageBufferGetStaticBuffers macro
Retrieve pointers to a statically created message buffer's data structure buffer and storage area buffer. These are the same buffers that are supplied at the time of creation.
Syntax
#define xMessageBufferGetStaticBuffers( xMessageBuffer, ppucMessageBufferStorageArea, ppxStaticMessageBuffer ) \
xStreamBufferGetStaticBuffers( ( xMessageBuffer ), ( ppucMessageBufferStorageArea ), ( ppxStaticMessageBuffer ) )
Arguments
xMessageBuffer
The message buffer for which to retrieve the buffers.
ppucMessageBufferStorageArea
Used to return a pointer to the message buffer's storage area buffer.
ppxStaticMessageBuffer
Used to return a pointer to the message buffer's data structure buffer.
Return value
pdTRUE if buffers were retrieved, pdFALSE otherwise.