X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=glib%2Fgoption.h;h=b2a2147534f71fa948d87063d0a7a6a73ee31f67;hb=4ca03e4b4e79842ed8beaabac9a47ca45555534c;hp=0f42e16b8e9a0b117e648d4bfe36bd912713cea8;hpb=a62fd5ec6058a269ad7e9b9cb08e403b77620fac;p=platform%2Fupstream%2Fglib.git diff --git a/glib/goption.h b/glib/goption.h index 0f42e16..b2a2147 100644 --- a/glib/goption.h +++ b/glib/goption.h @@ -76,15 +76,15 @@ GQuark g_option_context_error_quark (void) G_GNUC_CONST; struct _GOptionEntry { - const char *long_name; - char short_name; - int flags; + const gchar *long_name; + gchar short_name; + gint flags; - GOptionArg arg; - gpointer arg_data; + GOptionArg arg; + gpointer arg_data; - const char *description; - const char *arg_description; + const gchar *description; + const gchar *arg_description; }; GOptionContext *g_option_context_new (const gchar *parameter_string); @@ -113,7 +113,7 @@ GOptionGroup *g_option_context_get_main_group (GOptionContext *context); GOptionGroup *g_option_group_new (const gchar *name, const gchar *description, - const char *help_description, + const gchar *help_description, gpointer user_data, GDestroyNotify destroy); void g_option_group_set_parse_hooks (GOptionGroup *group,