| 193 | } |
| 194 | |
| 195 | gint64 |
| 196 | ghb_dict_get_int(const GhbValue *dict, const gchar *key) |
| 197 | { |
| 198 | const GhbValue* value; |
| 199 | value = ghb_dict_get_value(dict, key); |
| 200 | if (value == NULL) return 0; |
| 201 | return ghb_value_get_int(value); |
| 202 | } |
| 203 | |
| 204 | gdouble |
| 205 | ghb_dict_get_double(const GhbValue *dict, const gchar *key) |
no test coverage detected