GetOptions

Gets the map that contains all of the option entries.

Syntax

MAP_STRING**							 getOptions(Message* message) 

Parameters

  • Message—the message to which this function applies

Results

Returns the array of MAP_STRING that contains all of the context entries.

Example

ASCII Version
int i; 
char* name; 
char* value; 
MAP_STRING** mapping; 
mapping = getOptions( message); 
i=0; 
while(mapping[i] != NULL) 
{ 
name= mapping[i]->key; 
value = mapping[i]->value; 
i++; 
}
Unicode Version
int i; 
UChar* name; 
UChar* value; 
MAP_STRING** mapping; 
mapping = getOptions( message); 
i=0; 
while(mapping[i] != NULL) 
{ 
name= mapping[i]->key; 
value = mapping[i]->value; 
i++; 
}