| 166 | } |
| 167 | |
| 168 | void |
| 169 | ghb_dict_set_bool(GhbValue *dict, const gchar *key, gboolean bval) |
| 170 | { |
| 171 | GhbValue *value; |
| 172 | value = ghb_bool_value_new(bval); |
| 173 | ghb_dict_set(dict, key, value); |
| 174 | } |
| 175 | |
| 176 | GhbValue* |
| 177 | ghb_dict_get_value(const GhbValue *dict, const gchar *key) |
no outgoing calls
no test coverage detected