blob: 43e27c83b4b96b933ecd924a54c7002ee8789623 (
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
|
; h2defs.py does not generate this. murrayc.
(define-function g_themed_icon_get_names
(c-name "g_themed_icon_get_names")
(return-type "const-char*const*")
)
; h2defs failed to generate this murrayc:
(define-method get_environ
(of-object "GApplicationCommandLine")
(c-name "g_application_command_line_get_environ")
(return-type "const-gchar*const*")
)
(define-method list_schemas
(of-object "GSettingsBackend")
(c-name "g_settings_list_schemas")
(return-type "const-gchar*const*")
)
; extra_defs does not generate these, for some reason. murrayc:
(define-signal changed
(of-object "GMount")
(return-type "void")
(when "last")
)
(define-signal unmounted
(of-object "GMount")
(return-type "void")
(when "last")
)
; extra_defs does not generate these, for some reason. murrayc:
(define-signal changed
(of-object "GVolume")
(return-type "void")
(when "last")
)
(define-signal removed
(of-object "GVolume")
(return-type "void")
(when "last")
)
|