X-Git-Url: http://git.osdn.jp/view?a=blobdiff_plain;f=gtk%2Fsrc%2Fvalues.h;h=d28727fcb6bed2b2fb767391068ff4bbebd36266;hb=ee11b173569503d7c8d2be01945c383887fed91c;hp=feb995d24434a3d9c3e781c5292b13834d85c41f;hpb=e3ed1af85d617724db9df501b44da9dae59e33c4;p=handbrake-jp%2Fhandbrake-jp-git.git diff --git a/gtk/src/values.h b/gtk/src/values.h index feb995d2..d28727fc 100644 --- a/gtk/src/values.h +++ b/gtk/src/values.h @@ -35,6 +35,7 @@ void ghb_array_replace(GValue *gval, guint ii, GValue *val); void ghb_array_append(GValue *gval, GValue *val); void ghb_array_remove(GValue *gval, guint ii); gint ghb_array_len(const GValue *gval); +void ghb_array_copy(GValue *arr1, GValue *arr2, gint count); void ghb_value_free(GValue *gval); GValue* ghb_value_new(GType gtype); @@ -66,9 +67,11 @@ GValue* ghb_rawdata_value_new(ghb_rawdata_t *data); void ghb_dict_insert(GValue *gval, gchar *key, GValue *val); void ghb_dict_iter_init(GHashTableIter *iter, GValue *gval); -GValue* ghb_dict_lookup(GValue *gval, const gchar *key); +GValue* ghb_dict_lookup(const GValue *gval, const gchar *key); gboolean ghb_dict_remove(GValue *gval, const gchar *key); void ghb_register_transforms(void); +void debug_show_value(GValue *gval); +void debug_show_type(GType tp); #endif // _GHB_VALUES_H_