Sets the value associated with the specified key.
#include "am_properties.h"
AM_EXPORT am_status_t
am_properties_set(am_properties_t properties, const char *key,
const char *value);
This function takes the following parameters:
Handle to the properties object to be modified.
The key to modify.
The value to associate with the specified key.
This function returns am_status_t with one of the following values:
If no error is detected.
If the properties, key, or value argument is NULL.
If unable to allocate memory to store the new key/value.
The specified value will replace any previously existing value.