summaryrefslogtreecommitdiff
path: root/docs/website/annotations/giannotations.rst
blob: 70534c92ded32c0edaa9cef920ecb493a511cf20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
GObject-Introspection annotations
---------------------------------

Symbol visibility
~~~~~~~~~~~~~~~~~

.. list-table::
  :header-rows: 1
  :widths: 1 1 10 1

  * - Annotation
    - Applies to
    - Description
    - Since
  * - ``(skip)``
    - identifier
    - Omit the symbol from the introspected output.
    - :commit:`v0.6.4 <7549c8053d0229a12d9196cc8abae54a01a555d0>`
      :bzbug:`556628`
  * -
    - paremeters, return value
    - Indicate that the parameter or return value is only useful in C and
      should be skipped.
    - :commit:`v1.29.0 <9c6797e0478b5025c3f2f37b1331c1328cf34f4d>`
      :bzbug:`649657`
  * - ``(rename-to SYMBOL)``
    - identifier
    - Rename the original symbol's name to ``SYMBOL``. If ``SYMBOL`` resolves
      to a symbol name that is already used, the original binding for that
      name is removed.
    - :commit:`v0.6.3 <23e6fa6993c046de032598127ea48d4a7ee00935>`
      :bzbug:`556475`


Memory and lifecycle management
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

.. list-table::
  :header-rows: 1
  :widths: 1 1 10 1

  * - Annotation
    - Applies to
    - Description
    - Since
  * - ``(transfer MODE)``
    - identifier (only properties)
    - Transfer ownership for the property, (see below)
    - :commit:`v0.9.0 <22ae017ffd3052c0b81822b2ca6e41626b76b9c4>`
      :bzbug:`620484`
  * -
    - parameters, return value
    - Transfer mode for the parameter or return value (see below).
    - v0.5.0 unknown

Transfer modes:

* ``none``: the recipient does not own the value
* ``container``: the recipient owns the container, but not the elements.
  (Only meaningful for container types.)
* ``full``: the recipient owns the entire value. For a refcounted type,
  this means the recipient owns a ref on the value. For a container type,
  this means the recipient owns both container and elements.
* ``floating``: alias for none, can be used for floating objects.

``container`` is usually a pointer to a list or hash table, eg GList, GSList,
GHashTable etc.

``elements`` is what is contained inside the list: integers, strings, GObjects
etc.


Support for GObject objects
~~~~~~~~~~~~~~~~~~~~~~~~~~~

.. list-table::
  :header-rows: 1
  :widths: 1 1 10 1

  * - Annotation
    - Applies to
    - Description
    - Since
  * - ``(constructor)``
    - identifier
    - The annotated symbol should not become available as a static methods
      but as a constructor.
    - :commit:`v0.10.2 <2c36790c>`
      :bzbug:`561264`
  * - ``(method)``
    - identifier
    - This function is a method.
    - :commit:`v0.10.2 <09bca85d>`
      :bzbug:`639945`
  * - ``(virtual SLOT)``
    - identifier
    - This function is the invoker for a virtual method.
    - :commit:`v0.6.3 <fdbe3cc3>`
      :bzbug:`557383`
  * - ``(set-property NAME)``
    - identifier
    - This function is a setter method for the given GObject property.
    - :issue:`13`
  * - ``(get-property NAME)``
    - identifier
    - This function is a getter method for the given GObject property.
    - :issue:`13`


Support for GObject closures
~~~~~~~~~~~~~~~~~~~~~~~~~~~~

.. list-table::
  :header-rows: 1
  :widths: 1 1 10 1

  * - Annotation
    - Applies to
    - Description
    - Since
  * - ``(destroy)``
    - parameters
    - The parameter is a "``destroy_data``" for callbacks.
    - :commit:`v0.6.3 <cf7621f3>`
      :bzbug:`574284`
  * - ``(destroy DESTROY)``
    - parameters
    - The parameter is a "``destroy_data``" for callbacks, the
      ``DESTROY`` option points to a paramter name other than
      ``destroy_data``.
    -
  * - ``(closure)``
    - parameters
    - The parameter is a "``user_data``" for callbacks.
      Many bindings can pass ``NULL`` here.
    -
  * - ``(closure CLOSURE)``
    - parameters
    - The parameter is a "``user_data``" for callbacks, the ``CLOSURE`` option
      points to a different parameter that is the actual callback.
    -


Support for non-GObject fundamental objects
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

.. list-table::
  :header-rows: 1
  :widths: 1 1 10 1

  * - Annotation
    - Applies to
    - Description
    - Since
  * - ``(ref-func FUNC)``
    - identifier
    - ``FUNC`` is the function used to ref a struct, must be a GTypeInstance
    - :commit:`v0.9.2 <1e9822c7>`
      :bzbug:`568913`
  * - ``(unref-func FUNC)``
    - identifier
    - ``FUNC`` is the function used to unref a struct, must be a GTypeInstance
    -
  * - ``(get-value-func FUNC)``
    - identifier
    - ``FUNC`` is the function used to convert a struct from a GValue,
      must be a GTypeInstance
    -
  * - ``(set-value-func FUNC)``
    - identifier
    - ``FUNC`` is the function used to convert from a struct to a GValue,
      must be a GTypeInstance
    -


Type signature
~~~~~~~~~~~~~~

.. list-table::
  :header-rows: 1
  :widths: 1 1 10 1

  * - Annotation
    - Applies to
    - Description
    - Since
  * - ``(nullable)``
    - parameters, return value
    - Indicates that ``NULL`` may be a valid value for a parameter
      (in, out, inout), or return value (though note that return values which
      are only ``NULL`` when throwing an error should not be annotated as
      ``(nullable)``).
    - :commit:`1.42 <1459ff3e>`
      :bzbug:`660879`
  * - ``(not nullable)``
    - parameters, return value
    - Indicates that ``NULL`` is not a valid value for a parameter
      (in, out, inout), or return value.
    - :commit:`1.48 <10cb665f>`
      :bzbug:`729660`
  * - ``(optional)``
    - parameters
    - For ``(out)`` or ``(inout)`` parameters, signifies that the caller
      can pass ``NULL`` to ignore this output parameter.
    - :commit:`1.42 <1459ff3e>`
      :bzbug:`660879`
  * - ``(in)``
    - parameters
    - In parameter.
    - v0.5.0
      unknown
  * - ``(out)``
    - parameters
    - Out parameter (automatically determine allocation).
    - v0.5.0
      unknown
  * - ``(out caller-allocates)``
    - parameters
    - Out parameter, where the calling code must allocate storage.
    - :commit:`v0.6.13 <5589687a>`
      :bzbug:`604749`
  * - ``(out callee-allocates)``
    - parameters
    - Out parameter, where the receiving function must allocate storage.
    -
  * - ``(inout)``
    - parameters
    - In/out parameter.
    - v0.5.0
      unknown
  * - ``(type TYPE)``
    - identifier
    - Override the default type, used for properties
    - :commit:`v0.6.2 <6de1b296>`
      :bzbug:`546739`
  * -
    - parameters, return value
    - override the parsed C type with given type
    -
  * - ``(array)``
    - parameters, return value
    - Arrays.
    - v0.5.0
      unknown
  * - ``(array fixed-size=N)``
    - parameters, return value
    - array of fixed length N
    - v0.5.0
      unknown
  * - ``(array length=PARAM)``
    - parameters, return value
    - array, fetch the length from parameter PARAM
    - v0.5.0
      unknown
  * - ``(array zero-terminated=1)``
    - parameters, return value
    - array which is NULL terminated
    - :commit:`v0.6.0 <d15f8cde>`
      :bzbug:`557786`
  * - ``(element-type TYPE)``
    - parameters, return value
    - Specify the type of the element inside a container.
      Can be used in combination with (array).
    - v0.5.0
      unknown
  * - ``(element-type KTYPE VTYPE)``
    - parameters, return value
    - Specify the types of the keys and values in a dictionary-like container
      (eg, ``GHashTable``).
    - v0.5.0
      unknown
  * - ``(foreign)``
    - identifier
    - The annotated symbol is a foreign struct, meaning it is not available
      in a g-i supported library.
    - :commit:`v0.6.12 <1edeccd2>`
      :bzbug:`619450`
  * - ``(scope TYPE)``
    - parameters
    - The parameter is a callback, the ``TYPE`` option indicates the lifetime
      of the call. It is mainly used by language bindings wanting to know when
      the resources required to do the call (for instance ffi closures) can be
      freed.
    - :commit:`v0.6.2 <bc88ef7b>`
      :bzbug:`556489`

Scope types:

* ``call`` (default) - Only valid for the duration of the call.
  Can be called multiple times during the call.
* ``async`` - Only valid for the duration of the first callback invocation.
  Can only be called once.
* ``notified`` - valid until the GDestroyNotify argument is called.
  Can be called multiple times before the GDestroyNotify is called.

An example of a function using the ``call`` scope is ``g_slist_foreach()``.
For ``async`` there is ``g_file_read_async()`` and for notified
``g_idle_add_full()``.

Default Annotations: To avoid having the developers annotate everything the
introspection framework is providing sane default annotation values for a
couple of situations:

* ``(in)`` parameters: ``(transfer none)``
* ``(inout)`` and ``(out)`` parameters: ``(transfer full)``

  * if ``(caller allocates)`` is set: ``(transfer none)``

* ``gchar*`` means ``(type utf8)``
* return values: ``(transfer full)``

  * ``gchar*`` means ``(type utf8) (transfer full)``
  * ``const gchar*`` means ``(type utf8) (transfer none)``
  * ``GObject*`` defaults to ``(transfer full)``


Data annotations
~~~~~~~~~~~~~~~~

.. list-table::
  :header-rows: 1
  :widths: 1 1 10 1

  * - Annotation
    - Applies to
    - Description
    - Since
  * - ``(value VALUE)``
    - identifier
    - Used to override constants for defined values,
      VALUE contains the evaluated value
    - v0.5.0
      unknown
  * - ``(attributes my.key=val my.key2)``
    - identifier, parameters, return value
    - Attributes are free-form "key=value" annotations. When present, at least
      one key has to be specified. Assigning values to keys is optional.
    - :commit:`v0.9.0 <11cfe386>`
      :bzbug:`571548`


Deprecated GObject-Introspection annotations
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

.. list-table::
  :header-rows: 1
  :widths: 1 10 1

  * - Annotation
    - Description
    - Since
  * - ``(null-ok)``
    - Replaced by ``(allow-none)``
    - :commit:`v0.6.0 <dc651812>`
      :bzbug:`557405`
  * - ``(in-out)``
    - Replaced by ``(inout)``
    - :commit:`1.39.0 <a2b22ce7>`
      :bzbug:`688897`
  * - ``(allow-none)``
    - Replaced by ``(nullable)`` and ``(optional)``
    - :commit:`1.42 <1459ff3e>`
      :bzbug:`660879`


Possible future GObject-Introspection annotations
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

These proposed additions are currently being discussed and in various stages
of development.

.. list-table::
  :header-rows: 1
  :widths: 1 1 10 1

  * - Annotation
    - Applies to
    - Description
    - Since
  * - ``(default VALUE)``
    - parameters
    - Default value for a parameter.
    - :bzbug:`558620`
  * - ``(error-domains DOM1 DOM2)``
    - parameters
    - Typed errors, similar to ``throws`` in Java.
    - unknown


Default Basic Types
-------------------

Basic types:

* gpointer: pointer to anything
* gboolean:boolean
* gint[8,16,32,64]: integer
* guint[8,16,32,64]: unsigned integer
* glong: long
* gulong: unsigned long
* GType: a gtype
* gfloat: float
* gdouble: double
* utf8: string encoded in UTF-8, not containing any embedded nuls
* filename: filename string (see below)
* guint8 array: binary data

Filename type:

The filename type represents an utf-8 string on Windows and a zero terminated
guint8 array on Unix. It should be used for filenames, environment variables
and process arguments.


Reference to Object Instances
-----------------------------

Instances:

* Object: a GObject instance
* Gtk.Button: a Gtk.Button instance


Examples
--------

Transfer
~~~~~~~~

::

    /**
     * mylib_get_constant1:
     *
     * Returns: (transfer full): a constant, free when you used it
     */
    gchar *
    mylib_get_constant1 (void)
    {
       return g_strdup("a constant");
    }

::

  /**
   * mylib_get_constant2:
   *
   * Returns: (transfer none): another constant
   */
  const gchar *
  mylib_get_string2 (void)
  {
     return "another constant";
  }

::

  /**
   * mylib_get_string_list1:
   *
   * Returns: (element-type utf8) (transfer full): list of constants,
   *          free the list with g_slist_free and the elements with g_free when done.
   */
  GSList *
  mylib_get_string_list1 (void)
  {
     GSList *l = NULL;
     l = g_slist_append (l, g_strdup ("foo"));
     l = g_slist_append (l, g_strdup ("bar"));
     return l;
  }

::

  /**
   * mylib_get_string_list2:
   *
   * Returns: (element-type utf8) (transfer container): list of constants
   *          free the list with g_slist_free when done.
   */
  GSList *
  mylib_get_string_list2 (void)
  {
     GSList *l = NULL;
     l = g_slist_append (l, "foo");
     l = g_slist_append (l, "bar");
     return l;
  }


Array length
~~~~~~~~~~~~

::

  /**
   * gtk_list_store_set_column_types:
   * @store: a #GtkListStore
   * @n_columns: Length of @types
   * @types: (array length=n_columns): List of types
   */
  void
  gtk_list_store_set_column_types (GtkListStore *list_store,
                                   gint          n_columns,
                                   GType        *types);


Nullable parameters
~~~~~~~~~~~~~~~~~~~

A number of things are nullable by convention, which means that you do not
have to add a ``(nullable)`` annotation to your code for them to be marked as
nullable in a GIR file. If you need to mark a parameter or return value as not
nullable, use ``(not nullable)`` to override the convention. Conventionally,
the following are automatically nullable:

* ``(closure)`` parameters and their corresponding user data parameters
* ``gpointer`` parameters and return types, unless also annotated with
  ``(type)``

::

  /**
   * gtk_link_button_new_with_label:
   * @uri: A URI
   * @label: (nullable): A piece of text or NULL
   */
  GtkWidget *
  gtk_link_button_new_with_label (const gchar *uri,
                                  const gchar *label);

::

  /**
   * g_source_add_unix_fd:
   * @source: a #GSource
   * @fd: the fd to monitor
   * @events: an event mask
   *
   * Returns: (not nullable): an opaque tag
   */
  gpointer
  g_source_add_unix_fd (GSource      *source,
                        gint          fd,
                        GIOCondition  events);

  /**
   * g_source_remove_unix_fd:
   * @source: a #GSource
   * @tag: (not nullable): the tag from g_source_add_unix_fd()
   */
  void
  g_source_remove_unix_fd (GSource  *source,
                           gpointer  tag);


G(S)List contained types
~~~~~~~~~~~~~~~~~~~~~~~~

::

  /**
   * gtk_container_get_children:
   * @container: A #GtkContainer
   *
   * Returns: (element-type Gtk.Widget) (transfer container): List of #GtkWidget
   */
  GList*
  gtk_container_get_children (GtkContainer *container);

::

  /**
   * FooBar:alist: (type GSList(NiceObj))
   *
   * This property is a GSList of NiceObj GOjects.
   */
      g_object_class_install_property (object_class,
                                       FOO_BAR_PROP_ALIST,
                                       g_param_spec_pointer ("alist",
                                                             "Alist",
                                                             "A list of nice objects",
                                                             G_PARAM_READWRITE));


Direction
~~~~~~~~~

::

  /**
   * gtk_widget_get_size_request:
   * @width: (out): Int to store width in
   * @height: (out): Int to store height in
   */


Out parameters
~~~~~~~~~~~~~~

This is a callee-allocates example; the (out) annotation automatically infers
this from the fact that there's a double indirection on a structure parameter.


::

  typedef struct _FooSubObj FooSubObj

  /**
   * foo_obj_get_sub_obj:
   * @obj: A #FooObj
   * @subobj: (out): A #FooSubObj
   *
   * Get a sub object.
   */
  void
  foo_obj_get_sub_obj (FooObj     *obj,
                       FooSubObj **subobj)
  {
    *subobj = foo_sub_object_new ();
  }

This is a caller-allocates example; the (out) annotation automatically infers
this from the fact that there's only a single indirection on a structure
parameter.

::

  typedef struct _FooIter FooIter;

  /**
   * foo_obj_get_iter:
   * @obj: A #FooObj
   * @iter: (out): An iterator, will be initialized
   *
   * Get an iterator.
   */
  void
  foo_obj_get_iter (FooObj *obj,
                    FooIter *iter)
  {
    iter->state = 0;
  }

An example which demonstrates an (optional) parameter: an (out) parameter
where the caller can pass NULL if they don’t want to receive the (out) value.

::

  /**
   * g_file_get_contents:
   * @filename: name of a file to read contents from, in the GLib file name encoding
   * @contents: (out): location to store an allocated string, use g_free() to free the returned string
   * @length: (out) (optional): location to store length in bytes of the contents, or NULL
   * @error: return location for a GError, or NULL
   *
   * [...]
   *
   * Returns: TRUE on success, FALSE if an error occurred
   */
  gboolean g_file_get_contents (const gchar *filename,
                                gchar **contents,
                                gsize *length,
                                GError **error);

  /* this is valid because length has (optional) */
  g_file_get_contents ("/etc/motd", &motd, NULL, &error); // VALID
  /* but this is not valid, according to those annotations */
  g_file_get_contents ("/etc/motd", NULL, NULL, &error); // NOT VALID


g_hash_table_iter_next() demonstrates the difference between (nullable) and
(optional) for (out) parameters. For an (out) parameter, (optional) indicates
that NULL may be passed by the caller to indicate they don’t want to receive
the (out) value. (nullable) indicates that NULL may be passed out by the
callee as the returned value.

::

  /**
   * g_hash_table_iter_next:
   * @iter: an initialized #GHashTableIter
   * @key: (out) (optional): a location to store the key
   * @value: (out) (optional) (nullable): a location to store the value
   *
   * [...]
   *
   * Returns: %FALSE if the end of the #GHashTable has been reached.
   */
  gboolean
  g_hash_table_iter_next (GHashTableIter *iter,
                          gpointer       *key,
                          gpointer       *value);

  /* this is valid because value and key have (optional) */
  g_hash_table_iter_next (iter, NULL, NULL);

  gpointer key, value;
  g_hash_table_iter_next (iter, &key, &value);

  if (value == NULL)
    /* this is valid because value has (nullable) */
  if (key == NULL)
    /* this is NOT VALID because key does not have (nullable) */


Rename to
~~~~~~~~~

Rename to is an advisory annotation. It's not required to fulfill the advisory
when generating or making a language binding. The way it is currently
implemented, if you rename a function to a name already in use, it will remove
the other binding. This is useful to eliminate unwanted/deprecated functions
from the binding.

Another (currently unimplemented) use for the rename annotation would be
overloading; for example, overloading of constructors or, like in this
example, overloading a method to be both an asynchronous and a synchronous one
(depending on the amount and what kind of parameters).

::

  /**
   * my_type_perform_async: (rename-to my_type_perform)
   * @self: The this ptr
   * @data: data
   * @callback: callback when async operation finished
   * @user_data: user_data for @callback
   *
   * Asynchronously perform
   **/
  void
  my_type_perform_async (MyType *self, gpointer data,
                         GFunc callback,
                         gpointer user_data);

  /**
   * my_type_perform:
   * @self: The this ptr
   * @data: data
   *
   * Perform
   **/
  void
  my_type_perform (MyType *self, gpointer data);

In a language supporting method overloading, because we advised to rename to
perform, and because we have another perform already, this could be bound like
this:

::

  class MyType {
    public void perform (Pointer data) { }
    public void perform (Pointer data, GFunc callback, Pointer user_data) { }
  }

However, currently the generated gir/typelib will only contain information
about my_type_perform_async, which will shadow (ie, remove) the binding of
my_type_perform.


Attributes
~~~~~~~~~~

Attributes are arbitrary key/value pairs that can be attached to almost any
item including classes, methods, signals, properties, parameters and return
values. These attributes appear in both the .gir and the .typelib files.
Attributes can serve as a mechanism for software higher in the toolchain.
Attributes are name-spaced using dot as a separator. At least one dot must
appear in the key name.

::

  /**
   * my_frobnicator_poke_path: (attributes gdbus.method PokePath)
   * @frobnicator: A #MyFrobnicator
   * @object_path: (gdbus.signature o): An object path.
   *
   * Manipulate an object path.
   *
   * Returns: (gdbus.signature o): A new object path. Free with g_free().
   */
  gchar *
  my_frobnicator_poke_path (MyFrobnicator *frobnicator,
                            const gchar   *object_path)


Constants
~~~~~~~~~

::

  /**
   * MY_CONSTANT: (value 100)
   * A constant.
   */
  #define MY_CONSTANT 10 * 10