File tree Expand file tree Collapse file tree 3 files changed +40
-2
lines changed Expand file tree Collapse file tree 3 files changed +40
-2
lines changed Original file line number Diff line number Diff line change @@ -176,3 +176,13 @@ concurrency = "send+sync"
176
176
[[object .function .parameter ]]
177
177
name = " format"
178
178
const = true
179
+ [[object .function ]]
180
+ name = " get_extensions"
181
+ [object .function .return ]
182
+ # The array is `NULL`-terminated
183
+ nullable = false
184
+ [[object .function ]]
185
+ name = " get_mime_types"
186
+ [object .function .return ]
187
+ # The array is `NULL`-terminated
188
+ nullable = false
Original file line number Diff line number Diff line change @@ -143,7 +143,6 @@ generate = [
143
143
" Gio.TestDBusFlags" ,
144
144
" Gio.TlsAuthenticationMode" ,
145
145
" Gio.TlsBackend" ,
146
- " Gio.TlsCertificate" ,
147
146
" Gio.TlsCertificateRequestFlags" ,
148
147
" Gio.TlsChannelBindingError" ,
149
148
" Gio.TlsClientConnection" ,
@@ -931,6 +930,11 @@ status = "generate"
931
930
name = " set_attribute_stringv"
932
931
# use strv
933
932
manual = true
933
+ [[object .function ]]
934
+ name = " list_attributes"
935
+ [object .function .return ]
936
+ # `NULL` on error it's only used for the case where `FileInfo` is NULL, which is not possible in Rust.
937
+ nullable = false
934
938
935
939
[[object ]]
936
940
name = " Gio.FilterOutputStream"
@@ -1496,6 +1500,20 @@ status = "generate"
1496
1500
# Better to provide None than -1 when you don't want to specify the number of threads
1497
1501
manual = true
1498
1502
1503
+ [[object ]]
1504
+ name = " Gio.TlsCertificate"
1505
+ status = " generate"
1506
+ [[object .function ]]
1507
+ name = " get_dns_names"
1508
+ [object .function .return ]
1509
+ # `NULL` if it’s not available.
1510
+ nullable = true
1511
+ [[object .function ]]
1512
+ name = " get_ip_addresses"
1513
+ [object .function .return ]
1514
+ # `NULL` if it’s not available.
1515
+ nullable = true
1516
+
1499
1517
[[object ]]
1500
1518
name = " Gio.TlsCertificateFlags"
1501
1519
status = " generate"
Original file line number Diff line number Diff line change @@ -21,7 +21,6 @@ generate = [
21
21
" Pango.Direction" ,
22
22
" Pango.EllipsizeMode" ,
23
23
" Pango.FontColor" ,
24
- " Pango.FontFace" ,
25
24
" Pango.FontMask" ,
26
25
" Pango.FontMetrics" ,
27
26
" Pango.FontScale" ,
@@ -292,6 +291,17 @@ concurrency = "send+sync"
292
291
name = " set_variations_static"
293
292
ignore = true
294
293
294
+ [[object ]]
295
+ name = " Pango.FontFace"
296
+ status = " generate"
297
+ [[object .function ]]
298
+ name = " list_sizes"
299
+ [[object .function .parameter ]]
300
+ name = " sizes"
301
+ # This is only applicable to bitmap fonts. For scalable fonts,
302
+ # stores `NULL` at the location pointed to by sizes and `0` at the location pointed to by `n_sizes`.
303
+ nullable = true
304
+
295
305
[[object ]]
296
306
name = " Pango.FontFamily"
297
307
status = " generate"
You can’t perform that action at this time.
0 commit comments