|
mUPnP for C
|
Functions | |
| mUpnpDictionary * | mupnp_dictionary_new (void) |
| void | mupnp_dictionary_delete (mUpnpDictionary *dictionaryList) |
| mUpnpDictionaryElement * | mupnp_dictionary_getelement (mUpnpDictionary *dir, const char *key) |
| void | mupnp_dictionary_setvalue (mUpnpDictionary *dir, const char *key, const char *value) |
| const char * | mupnp_dictionary_getvalue (mUpnpDictionary *dir, const char *key) |
| void mupnp_dictionary_delete | ( | mUpnpDictionary * | dir | ) |
Destroy a dictionary list
| dir | The dictionary list in question |
| mUpnpDictionaryElement * mupnp_dictionary_getelement | ( | mUpnpDictionary * | dir, |
| const char * | key ) |
| const char * mupnp_dictionary_getvalue | ( | mUpnpDictionary * | dir, |
| const char * | key ) |
Get a value of the specified key
| dir | The dictionary list in question |
| key | Name to search. |
| mUpnpDictionary * mupnp_dictionary_new | ( | void | ) |
Create a new dictionary list
| void mupnp_dictionary_setvalue | ( | mUpnpDictionary * | dir, |
| const char * | key, | ||
| const char * | value ) |
Set a new element into a dictionary
| dir | The dictionary list in question |
| key | Name to set. |
| value | Value to set. |