summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmmanuele Bassi <ebassi@linux.intel.com>2010-09-28 14:58:17 +0100
committerEmmanuele Bassi <ebassi@linux.intel.com>2010-09-28 14:58:17 +0100
commit0d77c7c965dcebcec0dae6b6244c3a057b398b59 (patch)
treee9ac5386c1a9824a5a7f6108b2d7cdff651d349c
parent4de105a2bbd201c8e60f3e8777794a4cd532afdc (diff)
downloadclutter-gtk-0.10.tar.gz
Add introspection annotations for gtk_clutter_init*clutter-gtk-0.10
-rw-r--r--clutter-gtk/gtk-clutter-util.c28
1 files changed, 15 insertions, 13 deletions
diff --git a/clutter-gtk/gtk-clutter-util.c b/clutter-gtk/gtk-clutter-util.c
index 8cf4116..50bca6b 100644
--- a/clutter-gtk/gtk-clutter-util.c
+++ b/clutter-gtk/gtk-clutter-util.c
@@ -603,8 +603,9 @@ gtk_clutter_texture_set_from_icon_name (ClutterTexture *texture,
/**
* gtk_clutter_init:
- * @argc: pointer to the arguments count, or %NULL
- * @argv: pointer to the arguments vector, or %NULL
+ * @argc: (inout): pointer to the arguments count, or %NULL
+ * @argv: (array length=argc) (inout) (allow-none): pointer to the
+ * arguments vector, or %NULL
*
* This function should be called instead of clutter_init() and
* gtk_init().
@@ -633,17 +634,18 @@ gtk_clutter_init (int *argc,
/**
* gtk_clutter_init_with_args:
- * @argc: a pointer to the number of command line arguments.
- * @argv: a pointer to the array of command line arguments.
- * @parameter_string: a string which is displayed in
- * the first line of <option>--help</option> output, after
- * <literal><replaceable>programname</replaceable> [OPTION...]</literal>
- * @entries: a %NULL-terminated array of #GOptionEntry<!-- -->s
- * describing the options of your program
- * @translation_domain: a translation domain to use for translating
- * the <option>--help</option> output for the options in @entries
- * with gettext(), or %NULL
- * @error: a return location for errors
+ * @argc: (inout): a pointer to the number of command line arguments.
+ * @argv: (array length=argc) (inout) (allow-none): a pointer to the array
+ * of command line arguments.
+ * @parameter_string: (allow-none): a string which is displayed in
+ * the first line of <option>--help</option> output, after
+ * <literal><replaceable>programname</replaceable> [OPTION...]</literal>
+ * @entries: (allow-none): a %NULL-terminated array of #GOptionEntry<!-- -->s
+ * describing the options of your program, or %NULL
+ * @translation_domain: (allow-none): a translation domain to use for
+ * translating the <option>--help</option> output for the options
+ * in @entries with gettext(), or %NULL
+ * @error: (allow-none): a return location for errors, or %NULL
*
* This function should be called instead of clutter_init() and
* gtk_init_with_args().