| 202 | } |
| 203 | |
| 204 | gdouble |
| 205 | ghb_dict_get_double(const GhbValue *dict, const gchar *key) |
| 206 | { |
| 207 | const GhbValue* value; |
| 208 | value = ghb_dict_get_value(dict, key); |
| 209 | if (value == NULL) return 0; |
| 210 | return ghb_value_get_double(value); |
| 211 | } |
| 212 | |
| 213 | const gchar* |
| 214 | ghb_dict_get_string(const GhbValue *dict, const gchar *key) |
no test coverage detected