| 184 | } |
| 185 | |
| 186 | gboolean |
| 187 | ghb_dict_get_bool(const GhbValue *dict, const gchar *key) |
| 188 | { |
| 189 | const GhbValue* value; |
| 190 | value = ghb_dict_get_value(dict, key); |
| 191 | if (value == NULL) return FALSE; |
| 192 | return ghb_value_get_bool(value); |
| 193 | } |
| 194 | |
| 195 | gint64 |
| 196 | ghb_dict_get_int(const GhbValue *dict, const gchar *key) |
no test coverage detected