PalmLsnFree function

Frees message memory resources.

Prototype
void PalmLsnFree( struct a_palm_msg * const msg )
Parameters
  • msg   The a_palm_msg instance to be freed.

See also
Example

The following example shows a partial listing for allocating the message structure, processing the message, and using PalmLsnFree to free resources.

a_palm_msg * ulMsg;
...

// Allocate the message structure
ulMsg = PalmLsnAllocate();
...

// Fill the message fields
ret = PalmLsnDupMessage( ulMsg, msgBody );
...

// Process the message
ret = PalmLsnProcess( ulMsg, configDb, NULL, handled );
...

// Free the message
PalmLsnFree( ulMsg );