GetOptions

すべてのオプション エントリが含まれるマップを取得します。

構文

MAP_STRING**							 getOptions(Message* message) 

パラメータ

  • Message — この関数が適用されるメッセージ。

結果

すべてのコンテキスト エントリが含まれる MAP_STRING の配列を返します。

ASCII バージョン
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 バージョン
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++; 
}