PalmLsnFree method

Frees message memory resources.

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

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);