| 158 | } |
| 159 | |
| 160 | void |
| 161 | ghb_dict_set_int(GhbValue *dict, const gchar *key, gint64 ival) |
| 162 | { |
| 163 | GhbValue *value; |
| 164 | value = ghb_int_value_new(ival); |
| 165 | ghb_dict_set(dict, key, value); |
| 166 | } |
| 167 | |
| 168 | void |
| 169 | ghb_dict_set_bool(GhbValue *dict, const gchar *key, gboolean bval) |
no outgoing calls
no test coverage detected