| 150 | } |
| 151 | |
| 152 | void |
| 153 | ghb_dict_set_double(GhbValue *dict, const gchar *key, gdouble dval) |
| 154 | { |
| 155 | GhbValue *value; |
| 156 | value = ghb_double_value_new(dval); |
| 157 | ghb_dict_set(dict, key, value); |
| 158 | } |
| 159 | |
| 160 | void |
| 161 | ghb_dict_set_int(GhbValue *dict, const gchar *key, gint64 ival) |
no outgoing calls
no test coverage detected