line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
2
|
|
|
2
|
|
27443
|
use strict; |
|
2
|
|
|
|
|
4
|
|
|
2
|
|
|
|
|
49
|
|
2
|
2
|
|
|
2
|
|
6
|
use warnings; |
|
2
|
|
|
|
|
2
|
|
|
2
|
|
|
|
|
84
|
|
3
|
|
|
|
|
|
|
package Glib::FindMinVersion; |
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
# ABSTRACT: Find minimum version of GLib needed to compile C source |
6
|
|
|
|
|
|
|
our $VERSION = '0.003'; # VERSION |
7
|
|
|
|
|
|
|
|
8
|
2
|
|
|
2
|
|
7
|
use Carp; |
|
2
|
|
|
|
|
2
|
|
|
2
|
|
|
|
|
137
|
|
9
|
2
|
|
|
2
|
|
8
|
use List::Util qw(max); |
|
2
|
|
|
|
|
2
|
|
|
2
|
|
|
|
|
7182
|
|
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
=pod |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
=encoding utf8 |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 NAME |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
Glib::FindMinVersion - Find minimum version of GLib needed to compile C source |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=head1 SYNOPSIS |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
use Glib::FindMinVersion; |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
print Glib::FindMinVersion::with('g_get_num_processors'); # 2.36 |
25
|
|
|
|
|
|
|
print scalar Glib::FindMinVersion::for_file('source.c'); # 2.18 |
26
|
|
|
|
|
|
|
my %symbols = Glib::FindMinVersion::for_file('source.c' => 2.10); |
27
|
|
|
|
|
|
|
# ( |
28
|
|
|
|
|
|
|
# 2.18 => [qw[g_set_error_literal]], |
29
|
|
|
|
|
|
|
# 2.12 => [qw[g_ascii_strtoll g_base64_decode]], |
30
|
|
|
|
|
|
|
# ) |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
=head1 IMPLEMENTATION |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
Symbol use is detected quite crudely with C<< / \s* (?\w+) \s* \( /x >>. Symbols introduced prior to 2.0 are labelled as 2.0. |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=cut |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
my %GLib_version_of; |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
=head1 METHODS AND ARGUMENTS |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
=over 4 |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
=item with(@symbols) |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
Returns minimum GLib version which exports all C<@symbols>. |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
=cut |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
sub with { |
52
|
13
|
|
|
13
|
1
|
4228
|
my $symbol = shift; |
53
|
|
|
|
|
|
|
|
54
|
13
|
|
|
|
|
49
|
return $GLib_version_of{$symbol}; |
55
|
|
|
|
|
|
|
} |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
=item for_source($source [, $version]) |
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
Here, C<[]> denotes an optional argument. |
60
|
|
|
|
|
|
|
In list context, returns a listing of all found glib symbols grouped by version. If C<$version> is given, the list is limited to symbols newer than C<$version>. C<$version> is a string of the form C2\.\d\d?/>. |
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
In scalar context, returns the maximum version in the list, which is the minimum version required to use all the symbols. |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
=cut |
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
sub version_gt($$) { |
67
|
36
|
|
|
36
|
0
|
29
|
my ($a, $b) = @_; |
68
|
36
|
|
|
|
|
71
|
my ($a_major, $a_minor) = $a =~ /(\d+)\.(\d+)/g; |
69
|
36
|
|
|
|
|
57
|
my ($b_major, $b_minor) = $b =~ /(\d+)\.(\d+)/g; |
70
|
|
|
|
|
|
|
|
71
|
36
|
100
|
|
|
|
67
|
return 0 if $a_major < $b_major; |
72
|
24
|
100
|
|
|
|
34
|
return 1 if $a_major > $b_major; |
73
|
19
|
|
|
|
|
32
|
return $a_minor > $b_minor; |
74
|
|
|
|
|
|
|
} |
75
|
|
|
|
|
|
|
|
76
|
|
|
|
|
|
|
sub for_source { |
77
|
6
|
|
100
|
6
|
1
|
1323
|
my ($src, $current_version) = (shift, shift // '0.0'); |
78
|
|
|
|
|
|
|
|
79
|
6
|
|
|
|
|
464
|
my @symbols = $src =~ / \s* (\w+) \s* \( /gx; |
80
|
6
|
100
|
100
|
|
|
16
|
return max map { $GLib_version_of{$_} // 0 } @symbols unless wantarray; |
|
22
|
|
|
|
|
75
|
|
81
|
|
|
|
|
|
|
|
82
|
4
|
|
100
|
|
|
7
|
my %version_of = map { ($_, $GLib_version_of{$_} // '0.0') } @symbols; |
|
44
|
|
|
|
|
106
|
|
83
|
4
|
|
|
|
|
6
|
my %versions; |
84
|
4
|
|
|
|
|
12
|
for (keys %version_of) { |
85
|
36
|
100
|
|
|
|
37
|
push (@{ $versions{ $version_of{$_} } }, $_) if version_gt $version_of{$_}, $current_version; |
|
9
|
|
|
|
|
16
|
|
86
|
|
|
|
|
|
|
} |
87
|
|
|
|
|
|
|
|
88
|
4
|
|
|
|
|
16
|
return map { ($_, $versions{$_}) } reverse sort keys %versions; |
|
7
|
|
|
|
|
20
|
|
89
|
|
|
|
|
|
|
} |
90
|
|
|
|
|
|
|
|
91
|
|
|
|
|
|
|
=item for_file($filename [, $version]) |
92
|
|
|
|
|
|
|
|
93
|
|
|
|
|
|
|
Helper function that reads in C<$filename> and passes it to C. |
94
|
|
|
|
|
|
|
|
95
|
|
|
|
|
|
|
=cut |
96
|
|
|
|
|
|
|
|
97
|
|
|
|
|
|
|
sub for_file { |
98
|
0
|
|
|
0
|
1
|
|
open my $fh, '<', shift; |
99
|
0
|
|
|
|
|
|
local $/; |
100
|
0
|
|
|
|
|
|
return for_source(<$fh>, shift); |
101
|
|
|
|
|
|
|
} |
102
|
|
|
|
|
|
|
|
103
|
|
|
|
|
|
|
%GLib_version_of = ( |
104
|
|
|
|
|
|
|
g_log_writer_supports_color => '2.50', |
105
|
|
|
|
|
|
|
g_log_writer_standard_streams => '2.50', |
106
|
|
|
|
|
|
|
g_log_writer_journald => '2.50', |
107
|
|
|
|
|
|
|
g_log_writer_is_journald => '2.50', |
108
|
|
|
|
|
|
|
g_log_writer_format_fields => '2.50', |
109
|
|
|
|
|
|
|
g_log_writer_default => '2.50', |
110
|
|
|
|
|
|
|
g_log_variant => '2.50', |
111
|
|
|
|
|
|
|
g_log_structured_array => '2.50', |
112
|
|
|
|
|
|
|
g_log_structured => '2.50', |
113
|
|
|
|
|
|
|
g_log_set_writer_func => '2.50', |
114
|
|
|
|
|
|
|
g_key_file_load_from_bytes => '2.50', |
115
|
|
|
|
|
|
|
g_compute_hmac_for_bytes => '2.50', |
116
|
|
|
|
|
|
|
G_VARIANT_BUILDER_INIT => '2.50', |
117
|
|
|
|
|
|
|
G_PID_FORMAT => '2.50', |
118
|
|
|
|
|
|
|
G_DEBUG_HERE => '2.50', |
119
|
|
|
|
|
|
|
GLogWriterOutput => '2.50', |
120
|
|
|
|
|
|
|
GLogWriterFunc => '2.50', |
121
|
|
|
|
|
|
|
GLogField => '2.50', |
122
|
|
|
|
|
|
|
GLIB_VERSION_2_50 => '2.50', |
123
|
|
|
|
|
|
|
|
124
|
|
|
|
|
|
|
g_uint_checked_mul => '2.48', |
125
|
|
|
|
|
|
|
g_uint_checked_add => '2.48', |
126
|
|
|
|
|
|
|
g_uint64_checked_mul => '2.48', |
127
|
|
|
|
|
|
|
g_uint64_checked_add => '2.48', |
128
|
|
|
|
|
|
|
g_size_checked_mul => '2.48', |
129
|
|
|
|
|
|
|
g_size_checked_add => '2.48', |
130
|
|
|
|
|
|
|
g_sequence_is_empty => '2.48', |
131
|
|
|
|
|
|
|
GLIB_VERSION_2_48 => '2.48', |
132
|
|
|
|
|
|
|
|
133
|
|
|
|
|
|
|
g_thread_pool_move_to_front => '2.46', |
134
|
|
|
|
|
|
|
g_log_set_handler_full => '2.46', |
135
|
|
|
|
|
|
|
g_async_queue_remove_unlocked => '2.46', |
136
|
|
|
|
|
|
|
g_async_queue_remove => '2.46', |
137
|
|
|
|
|
|
|
g_async_queue_push_front_unlocked => '2.46', |
138
|
|
|
|
|
|
|
g_async_queue_push_front => '2.46', |
139
|
|
|
|
|
|
|
g_assert_cmpmem => '2.46', |
140
|
|
|
|
|
|
|
GLIB_VERSION_2_46 => '2.46', |
141
|
|
|
|
|
|
|
|
142
|
|
|
|
|
|
|
g_win32_check_windows_version => '2.44', |
143
|
|
|
|
|
|
|
g_strv_contains => '2.44', |
144
|
|
|
|
|
|
|
g_steal_pointer => '2.44', |
145
|
|
|
|
|
|
|
g_option_group_unref => '2.44', |
146
|
|
|
|
|
|
|
g_option_group_ref => '2.44', |
147
|
|
|
|
|
|
|
g_option_context_set_strict_posix => '2.44', |
148
|
|
|
|
|
|
|
g_option_context_get_strict_posix => '2.44', |
149
|
|
|
|
|
|
|
g_mutex_locker_new => '2.44', |
150
|
|
|
|
|
|
|
g_mutex_locker_free => '2.44', |
151
|
|
|
|
|
|
|
g_autoptr => '2.44', |
152
|
|
|
|
|
|
|
g_autofree => '2.44', |
153
|
|
|
|
|
|
|
g_auto => '2.44', |
154
|
|
|
|
|
|
|
G_DEFINE_AUTO_CLEANUP_FREE_FUNC => '2.44', |
155
|
|
|
|
|
|
|
G_DEFINE_AUTO_CLEANUP_CLEAR_FUNC => '2.44', |
156
|
|
|
|
|
|
|
G_DEFINE_AUTOPTR_CLEANUP_FUNC => '2.44', |
157
|
|
|
|
|
|
|
GMutexLocker => '2.44', |
158
|
|
|
|
|
|
|
GLIB_VERSION_2_44 => '2.44', |
159
|
|
|
|
|
|
|
|
160
|
|
|
|
|
|
|
G_GNUC_CHECK_VERSION => '2.42', |
161
|
|
|
|
|
|
|
GLIB_VERSION_2_42 => '2.42', |
162
|
|
|
|
|
|
|
|
163
|
|
|
|
|
|
|
g_win32_get_command_line => '2.40', |
164
|
|
|
|
|
|
|
g_variant_parse_error_print_context => '2.40', |
165
|
|
|
|
|
|
|
g_variant_dict_unref => '2.40', |
166
|
|
|
|
|
|
|
g_variant_dict_remove => '2.40', |
167
|
|
|
|
|
|
|
g_variant_dict_ref => '2.40', |
168
|
|
|
|
|
|
|
g_variant_dict_new => '2.40', |
169
|
|
|
|
|
|
|
g_variant_dict_lookup_value => '2.40', |
170
|
|
|
|
|
|
|
g_variant_dict_lookup => '2.40', |
171
|
|
|
|
|
|
|
g_variant_dict_insert_value => '2.40', |
172
|
|
|
|
|
|
|
g_variant_dict_insert => '2.40', |
173
|
|
|
|
|
|
|
g_variant_dict_init => '2.40', |
174
|
|
|
|
|
|
|
g_variant_dict_end => '2.40', |
175
|
|
|
|
|
|
|
g_variant_dict_contains => '2.40', |
176
|
|
|
|
|
|
|
g_variant_dict_clear => '2.40', |
177
|
|
|
|
|
|
|
g_str_tokenize_and_fold => '2.40', |
178
|
|
|
|
|
|
|
g_str_to_ascii => '2.40', |
179
|
|
|
|
|
|
|
g_str_match_string => '2.40', |
180
|
|
|
|
|
|
|
g_str_is_ascii => '2.40', |
181
|
|
|
|
|
|
|
g_ptr_array_insert => '2.40', |
182
|
|
|
|
|
|
|
g_option_context_parse_strv => '2.40', |
183
|
|
|
|
|
|
|
g_key_file_save_to_file => '2.40', |
184
|
|
|
|
|
|
|
g_info => '2.40', |
185
|
|
|
|
|
|
|
g_hash_table_get_keys_as_array => '2.40', |
186
|
|
|
|
|
|
|
g_assert_nonnull => '2.40', |
187
|
|
|
|
|
|
|
GVariantDict => '2.40', |
188
|
|
|
|
|
|
|
GLIB_VERSION_2_40 => '2.40', |
189
|
|
|
|
|
|
|
|
190
|
|
|
|
|
|
|
g_variant_new_take_string => '2.38', |
191
|
|
|
|
|
|
|
g_variant_new_printf => '2.38', |
192
|
|
|
|
|
|
|
g_test_trap_subprocess => '2.38', |
193
|
|
|
|
|
|
|
g_test_subprocess => '2.38', |
194
|
|
|
|
|
|
|
g_test_skip => '2.38', |
195
|
|
|
|
|
|
|
g_test_set_nonfatal_assertions => '2.38', |
196
|
|
|
|
|
|
|
g_test_incomplete => '2.38', |
197
|
|
|
|
|
|
|
g_test_get_filename => '2.38', |
198
|
|
|
|
|
|
|
g_test_get_dir => '2.38', |
199
|
|
|
|
|
|
|
g_test_failed => '2.38', |
200
|
|
|
|
|
|
|
g_test_build_filename => '2.38', |
201
|
|
|
|
|
|
|
g_regex_get_max_lookbehind => '2.38', |
202
|
|
|
|
|
|
|
g_assert_true => '2.38', |
203
|
|
|
|
|
|
|
g_assert_null => '2.38', |
204
|
|
|
|
|
|
|
g_assert_false => '2.38', |
205
|
|
|
|
|
|
|
G_KEY_FILE_DESKTOP_KEY_DBUS_ACTIVATABLE => '2.38', |
206
|
|
|
|
|
|
|
G_KEY_FILE_DESKTOP_KEY_ACTIONS => '2.38', |
207
|
|
|
|
|
|
|
GTestFileType => '2.38', |
208
|
|
|
|
|
|
|
GLIB_VERSION_2_38 => '2.38', |
209
|
|
|
|
|
|
|
|
210
|
|
|
|
|
|
|
g_variant_new_from_bytes => '2.36', |
211
|
|
|
|
|
|
|
g_variant_get_data_as_bytes => '2.36', |
212
|
|
|
|
|
|
|
g_unix_fd_source_new => '2.36', |
213
|
|
|
|
|
|
|
g_unix_fd_add_full => '2.36', |
214
|
|
|
|
|
|
|
g_unix_fd_add => '2.36', |
215
|
|
|
|
|
|
|
g_test_initialized => '2.36', |
216
|
|
|
|
|
|
|
g_source_set_ready_time => '2.36', |
217
|
|
|
|
|
|
|
g_source_remove_unix_fd => '2.36', |
218
|
|
|
|
|
|
|
g_source_query_unix_fd => '2.36', |
219
|
|
|
|
|
|
|
g_source_modify_unix_fd => '2.36', |
220
|
|
|
|
|
|
|
g_source_add_unix_fd => '2.36', |
221
|
|
|
|
|
|
|
g_markup_parse_context_unref => '2.36', |
222
|
|
|
|
|
|
|
g_markup_parse_context_ref => '2.36', |
223
|
|
|
|
|
|
|
g_get_num_processors => '2.36', |
224
|
|
|
|
|
|
|
g_close => '2.36', |
225
|
|
|
|
|
|
|
GLIB_VERSION_2_36 => '2.36', |
226
|
|
|
|
|
|
|
|
227
|
|
|
|
|
|
|
g_variant_check_format_string => '2.34', |
228
|
|
|
|
|
|
|
g_test_expect_message => '2.34', |
229
|
|
|
|
|
|
|
g_test_assert_expected_messages => '2.34', |
230
|
|
|
|
|
|
|
g_test_add_data_func_full => '2.34', |
231
|
|
|
|
|
|
|
g_string_free_to_bytes => '2.34', |
232
|
|
|
|
|
|
|
g_spawn_check_exit_status => '2.34', |
233
|
|
|
|
|
|
|
g_slist_copy_deep => '2.34', |
234
|
|
|
|
|
|
|
g_regex_get_has_cr_or_lf => '2.34', |
235
|
|
|
|
|
|
|
g_mapped_file_get_bytes => '2.34', |
236
|
|
|
|
|
|
|
g_list_copy_deep => '2.34', |
237
|
|
|
|
|
|
|
g_datalist_id_replace_data => '2.34', |
238
|
|
|
|
|
|
|
g_datalist_id_dup_data => '2.34', |
239
|
|
|
|
|
|
|
g_compute_checksum_for_bytes => '2.34', |
240
|
|
|
|
|
|
|
g_clear_pointer => '2.34', |
241
|
|
|
|
|
|
|
G_DEFINE_QUARK => '2.34', |
242
|
|
|
|
|
|
|
GLIB_VERSION_2_34 => '2.34', |
243
|
|
|
|
|
|
|
|
244
|
|
|
|
|
|
|
g_variant_new_fixed_array => '2.32', |
245
|
|
|
|
|
|
|
g_thread_unref => '2.32', |
246
|
|
|
|
|
|
|
g_thread_try_new => '2.32', |
247
|
|
|
|
|
|
|
g_thread_ref => '2.32', |
248
|
|
|
|
|
|
|
g_thread_new => '2.32', |
249
|
|
|
|
|
|
|
g_rw_lock_writer_unlock => '2.32', |
250
|
|
|
|
|
|
|
g_rw_lock_writer_trylock => '2.32', |
251
|
|
|
|
|
|
|
g_rw_lock_writer_lock => '2.32', |
252
|
|
|
|
|
|
|
g_rw_lock_reader_unlock => '2.32', |
253
|
|
|
|
|
|
|
g_rw_lock_reader_trylock => '2.32', |
254
|
|
|
|
|
|
|
g_rw_lock_reader_lock => '2.32', |
255
|
|
|
|
|
|
|
g_rw_lock_init => '2.32', |
256
|
|
|
|
|
|
|
g_rec_mutex_unlock => '2.32', |
257
|
|
|
|
|
|
|
g_rec_mutex_trylock => '2.32', |
258
|
|
|
|
|
|
|
g_rec_mutex_lock => '2.32', |
259
|
|
|
|
|
|
|
g_rec_mutex_init => '2.32', |
260
|
|
|
|
|
|
|
g_queue_free_full => '2.32', |
261
|
|
|
|
|
|
|
g_private_replace => '2.32', |
262
|
|
|
|
|
|
|
g_mutex_init => '2.32', |
263
|
|
|
|
|
|
|
g_mapped_file_new_from_fd => '2.32', |
264
|
|
|
|
|
|
|
g_main_context_ref_thread_default => '2.32', |
265
|
|
|
|
|
|
|
g_key_file_unref => '2.32', |
266
|
|
|
|
|
|
|
g_key_file_ref => '2.32', |
267
|
|
|
|
|
|
|
g_hash_table_contains => '2.32', |
268
|
|
|
|
|
|
|
g_hash_table_add => '2.32', |
269
|
|
|
|
|
|
|
g_environ_unsetenv => '2.32', |
270
|
|
|
|
|
|
|
g_environ_setenv => '2.32', |
271
|
|
|
|
|
|
|
g_environ_getenv => '2.32', |
272
|
|
|
|
|
|
|
g_cond_wait_until => '2.32', |
273
|
|
|
|
|
|
|
g_cond_init => '2.32', |
274
|
|
|
|
|
|
|
g_cond_clear => '2.32', |
275
|
|
|
|
|
|
|
g_bytes_unref_to_data => '2.32', |
276
|
|
|
|
|
|
|
g_bytes_unref_to_array => '2.32', |
277
|
|
|
|
|
|
|
g_bytes_unref => '2.32', |
278
|
|
|
|
|
|
|
g_bytes_ref => '2.32', |
279
|
|
|
|
|
|
|
g_bytes_new_with_free_func => '2.32', |
280
|
|
|
|
|
|
|
g_bytes_new_take => '2.32', |
281
|
|
|
|
|
|
|
g_bytes_new_static => '2.32', |
282
|
|
|
|
|
|
|
g_bytes_new_from_bytes => '2.32', |
283
|
|
|
|
|
|
|
g_bytes_new => '2.32', |
284
|
|
|
|
|
|
|
g_bytes_hash => '2.32', |
285
|
|
|
|
|
|
|
g_bytes_get_size => '2.32', |
286
|
|
|
|
|
|
|
g_bytes_get_data => '2.32', |
287
|
|
|
|
|
|
|
g_bytes_equal => '2.32', |
288
|
|
|
|
|
|
|
g_bytes_compare => '2.32', |
289
|
|
|
|
|
|
|
g_byte_array_new_take => '2.32', |
290
|
|
|
|
|
|
|
g_byte_array_free_to_bytes => '2.32', |
291
|
|
|
|
|
|
|
g_array_set_clear_func => '2.32', |
292
|
|
|
|
|
|
|
G_UNICHAR_MAX_DECOMPOSITION_LENGTH => '2.32', |
293
|
|
|
|
|
|
|
G_UNAVAILABLE => '2.32', |
294
|
|
|
|
|
|
|
G_SOURCE_REMOVE => '2.32', |
295
|
|
|
|
|
|
|
G_SOURCE_CONTINUE => '2.32', |
296
|
|
|
|
|
|
|
G_PRIVATE_INIT => '2.32', |
297
|
|
|
|
|
|
|
G_GNUC_END_IGNORE_DEPRECATIONS => '2.32', |
298
|
|
|
|
|
|
|
G_GNUC_BEGIN_IGNORE_DEPRECATIONS => '2.32', |
299
|
|
|
|
|
|
|
G_DEPRECATED_FOR => '2.32', |
300
|
|
|
|
|
|
|
G_DEPRECATED => '2.32', |
301
|
|
|
|
|
|
|
GRecMutex => '2.32', |
302
|
|
|
|
|
|
|
GRWLock => '2.32', |
303
|
|
|
|
|
|
|
GLIB_VERSION_MIN_REQUIRED => '2.32', |
304
|
|
|
|
|
|
|
GLIB_VERSION_MAX_ALLOWED => '2.32', |
305
|
|
|
|
|
|
|
GLIB_VERSION_2_32 => '2.32', |
306
|
|
|
|
|
|
|
GLIB_VERSION_2_30 => '2.32', |
307
|
|
|
|
|
|
|
GLIB_VERSION_2_28 => '2.32', |
308
|
|
|
|
|
|
|
GLIB_VERSION_2_26 => '2.32', |
309
|
|
|
|
|
|
|
GBytes => '2.32', |
310
|
|
|
|
|
|
|
|
311
|
|
|
|
|
|
|
g_variant_new_objv => '2.30', |
312
|
|
|
|
|
|
|
g_variant_get_objv => '2.30', |
313
|
|
|
|
|
|
|
g_variant_dup_objv => '2.30', |
314
|
|
|
|
|
|
|
g_utf8_substring => '2.30', |
315
|
|
|
|
|
|
|
g_unix_signal_source_new => '2.30', |
316
|
|
|
|
|
|
|
g_unix_signal_add_full => '2.30', |
317
|
|
|
|
|
|
|
g_unix_signal_add => '2.30', |
318
|
|
|
|
|
|
|
g_unix_set_fd_nonblocking => '2.30', |
319
|
|
|
|
|
|
|
g_unix_open_pipe => '2.30', |
320
|
|
|
|
|
|
|
g_unicode_script_to_iso15924 => '2.30', |
321
|
|
|
|
|
|
|
g_unicode_script_from_iso15924 => '2.30', |
322
|
|
|
|
|
|
|
g_unichar_fully_decompose => '2.30', |
323
|
|
|
|
|
|
|
g_unichar_decompose => '2.30', |
324
|
|
|
|
|
|
|
g_unichar_compose => '2.30', |
325
|
|
|
|
|
|
|
g_test_fail => '2.30', |
326
|
|
|
|
|
|
|
g_regex_escape_nul => '2.30', |
327
|
|
|
|
|
|
|
g_ptr_array_new_full => '2.30', |
328
|
|
|
|
|
|
|
g_pointer_bit_unlock => '2.30', |
329
|
|
|
|
|
|
|
g_pointer_bit_trylock => '2.30', |
330
|
|
|
|
|
|
|
g_pointer_bit_lock => '2.30', |
331
|
|
|
|
|
|
|
g_mkdtemp_full => '2.30', |
332
|
|
|
|
|
|
|
g_mkdtemp => '2.30', |
333
|
|
|
|
|
|
|
g_match_info_unref => '2.30', |
334
|
|
|
|
|
|
|
g_match_info_ref => '2.30', |
335
|
|
|
|
|
|
|
g_hmac_update => '2.30', |
336
|
|
|
|
|
|
|
g_hmac_unref => '2.30', |
337
|
|
|
|
|
|
|
g_hmac_ref => '2.30', |
338
|
|
|
|
|
|
|
g_hmac_new => '2.30', |
339
|
|
|
|
|
|
|
g_hmac_get_string => '2.30', |
340
|
|
|
|
|
|
|
g_hmac_get_digest => '2.30', |
341
|
|
|
|
|
|
|
g_hmac_copy => '2.30', |
342
|
|
|
|
|
|
|
g_hash_table_iter_replace => '2.30', |
343
|
|
|
|
|
|
|
g_format_size_full => '2.30', |
344
|
|
|
|
|
|
|
g_format_size => '2.30', |
345
|
|
|
|
|
|
|
g_dir_make_tmp => '2.30', |
346
|
|
|
|
|
|
|
g_compute_hmac_for_string => '2.30', |
347
|
|
|
|
|
|
|
g_compute_hmac_for_data => '2.30', |
348
|
|
|
|
|
|
|
g_atomic_pointer_xor => '2.30', |
349
|
|
|
|
|
|
|
g_atomic_pointer_or => '2.30', |
350
|
|
|
|
|
|
|
g_atomic_pointer_and => '2.30', |
351
|
|
|
|
|
|
|
g_atomic_pointer_add => '2.30', |
352
|
|
|
|
|
|
|
g_atomic_int_xor => '2.30', |
353
|
|
|
|
|
|
|
g_atomic_int_or => '2.30', |
354
|
|
|
|
|
|
|
g_atomic_int_and => '2.30', |
355
|
|
|
|
|
|
|
G_VARIANT_TYPE_VARDICT => '2.30', |
356
|
|
|
|
|
|
|
G_STATIC_ASSERT_EXPR => '2.30', |
357
|
|
|
|
|
|
|
GHmac => '2.30', |
358
|
|
|
|
|
|
|
|
359
|
|
|
|
|
|
|
g_variant_lookup_value => '2.28', |
360
|
|
|
|
|
|
|
g_variant_lookup => '2.28', |
361
|
|
|
|
|
|
|
g_source_remove_child_source => '2.28', |
362
|
|
|
|
|
|
|
g_source_get_time => '2.28', |
363
|
|
|
|
|
|
|
g_source_add_child_source => '2.28', |
364
|
|
|
|
|
|
|
g_slist_free_full => '2.28', |
365
|
|
|
|
|
|
|
g_sequence_lookup_iter => '2.28', |
366
|
|
|
|
|
|
|
g_sequence_lookup => '2.28', |
367
|
|
|
|
|
|
|
g_main_context_invoke_full => '2.28', |
368
|
|
|
|
|
|
|
g_main_context_invoke => '2.28', |
369
|
|
|
|
|
|
|
g_list_free_full => '2.28', |
370
|
|
|
|
|
|
|
g_get_user_runtime_dir => '2.28', |
371
|
|
|
|
|
|
|
g_get_real_time => '2.28', |
372
|
|
|
|
|
|
|
g_get_monotonic_time => '2.28', |
373
|
|
|
|
|
|
|
g_get_locale_variants => '2.28', |
374
|
|
|
|
|
|
|
g_get_environ => '2.28', |
375
|
|
|
|
|
|
|
GTestFunc => '2.28', |
376
|
|
|
|
|
|
|
GTestFixtureFunc => '2.28', |
377
|
|
|
|
|
|
|
GTestDataFunc => '2.28', |
378
|
|
|
|
|
|
|
|
379
|
|
|
|
|
|
|
g_variant_new_bytestring_array => '2.26', |
380
|
|
|
|
|
|
|
g_variant_new_bytestring => '2.26', |
381
|
|
|
|
|
|
|
g_variant_is_floating => '2.26', |
382
|
|
|
|
|
|
|
g_variant_get_bytestring_array => '2.26', |
383
|
|
|
|
|
|
|
g_variant_get_bytestring => '2.26', |
384
|
|
|
|
|
|
|
g_variant_dup_bytestring_array => '2.26', |
385
|
|
|
|
|
|
|
g_variant_dup_bytestring => '2.26', |
386
|
|
|
|
|
|
|
g_variant_compare => '2.26', |
387
|
|
|
|
|
|
|
g_variant_builder_add_parsed => '2.26', |
388
|
|
|
|
|
|
|
g_time_zone_unref => '2.26', |
389
|
|
|
|
|
|
|
g_time_zone_ref => '2.26', |
390
|
|
|
|
|
|
|
g_time_zone_new_utc => '2.26', |
391
|
|
|
|
|
|
|
g_time_zone_new_local => '2.26', |
392
|
|
|
|
|
|
|
g_time_zone_new => '2.26', |
393
|
|
|
|
|
|
|
g_time_zone_is_dst => '2.26', |
394
|
|
|
|
|
|
|
g_time_zone_get_offset => '2.26', |
395
|
|
|
|
|
|
|
g_time_zone_get_abbreviation => '2.26', |
396
|
|
|
|
|
|
|
g_time_zone_find_interval => '2.26', |
397
|
|
|
|
|
|
|
g_time_zone_adjust_time => '2.26', |
398
|
|
|
|
|
|
|
g_source_set_name_by_id => '2.26', |
399
|
|
|
|
|
|
|
g_source_set_name => '2.26', |
400
|
|
|
|
|
|
|
g_source_get_name => '2.26', |
401
|
|
|
|
|
|
|
g_regex_get_match_flags => '2.26', |
402
|
|
|
|
|
|
|
g_regex_get_compile_flags => '2.26', |
403
|
|
|
|
|
|
|
g_key_file_set_uint64 => '2.26', |
404
|
|
|
|
|
|
|
g_key_file_set_int64 => '2.26', |
405
|
|
|
|
|
|
|
g_key_file_get_uint64 => '2.26', |
406
|
|
|
|
|
|
|
g_key_file_get_int64 => '2.26', |
407
|
|
|
|
|
|
|
g_dcgettext => '2.26', |
408
|
|
|
|
|
|
|
g_date_time_unref => '2.26', |
409
|
|
|
|
|
|
|
g_date_time_to_utc => '2.26', |
410
|
|
|
|
|
|
|
g_date_time_to_unix => '2.26', |
411
|
|
|
|
|
|
|
g_date_time_to_timezone => '2.26', |
412
|
|
|
|
|
|
|
g_date_time_to_timeval => '2.26', |
413
|
|
|
|
|
|
|
g_date_time_to_local => '2.26', |
414
|
|
|
|
|
|
|
g_date_time_ref => '2.26', |
415
|
|
|
|
|
|
|
g_date_time_new_utc => '2.26', |
416
|
|
|
|
|
|
|
g_date_time_new_now_utc => '2.26', |
417
|
|
|
|
|
|
|
g_date_time_new_now_local => '2.26', |
418
|
|
|
|
|
|
|
g_date_time_new_now => '2.26', |
419
|
|
|
|
|
|
|
g_date_time_new_local => '2.26', |
420
|
|
|
|
|
|
|
g_date_time_new_from_unix_utc => '2.26', |
421
|
|
|
|
|
|
|
g_date_time_new_from_unix_local => '2.26', |
422
|
|
|
|
|
|
|
g_date_time_new_from_timeval_utc => '2.26', |
423
|
|
|
|
|
|
|
g_date_time_new_from_timeval_local => '2.26', |
424
|
|
|
|
|
|
|
g_date_time_new => '2.26', |
425
|
|
|
|
|
|
|
g_date_time_is_daylight_savings => '2.26', |
426
|
|
|
|
|
|
|
g_date_time_hash => '2.26', |
427
|
|
|
|
|
|
|
g_date_time_get_ymd => '2.26', |
428
|
|
|
|
|
|
|
g_date_time_get_year => '2.26', |
429
|
|
|
|
|
|
|
g_date_time_get_week_of_year => '2.26', |
430
|
|
|
|
|
|
|
g_date_time_get_week_numbering_year => '2.26', |
431
|
|
|
|
|
|
|
g_date_time_get_utc_offset => '2.26', |
432
|
|
|
|
|
|
|
g_date_time_get_timezone_abbreviation => '2.26', |
433
|
|
|
|
|
|
|
g_date_time_get_seconds => '2.26', |
434
|
|
|
|
|
|
|
g_date_time_get_second => '2.26', |
435
|
|
|
|
|
|
|
g_date_time_get_month => '2.26', |
436
|
|
|
|
|
|
|
g_date_time_get_minute => '2.26', |
437
|
|
|
|
|
|
|
g_date_time_get_microsecond => '2.26', |
438
|
|
|
|
|
|
|
g_date_time_get_hour => '2.26', |
439
|
|
|
|
|
|
|
g_date_time_get_day_of_year => '2.26', |
440
|
|
|
|
|
|
|
g_date_time_get_day_of_week => '2.26', |
441
|
|
|
|
|
|
|
g_date_time_get_day_of_month => '2.26', |
442
|
|
|
|
|
|
|
g_date_time_format => '2.26', |
443
|
|
|
|
|
|
|
g_date_time_equal => '2.26', |
444
|
|
|
|
|
|
|
g_date_time_difference => '2.26', |
445
|
|
|
|
|
|
|
g_date_time_compare => '2.26', |
446
|
|
|
|
|
|
|
g_date_time_add_years => '2.26', |
447
|
|
|
|
|
|
|
g_date_time_add_weeks => '2.26', |
448
|
|
|
|
|
|
|
g_date_time_add_seconds => '2.26', |
449
|
|
|
|
|
|
|
g_date_time_add_months => '2.26', |
450
|
|
|
|
|
|
|
g_date_time_add_minutes => '2.26', |
451
|
|
|
|
|
|
|
g_date_time_add_hours => '2.26', |
452
|
|
|
|
|
|
|
g_date_time_add_full => '2.26', |
453
|
|
|
|
|
|
|
g_date_time_add_days => '2.26', |
454
|
|
|
|
|
|
|
g_date_time_add => '2.26', |
455
|
|
|
|
|
|
|
G_TIME_SPAN_SECOND => '2.26', |
456
|
|
|
|
|
|
|
G_TIME_SPAN_MINUTE => '2.26', |
457
|
|
|
|
|
|
|
G_TIME_SPAN_MILLISECOND => '2.26', |
458
|
|
|
|
|
|
|
G_TIME_SPAN_HOUR => '2.26', |
459
|
|
|
|
|
|
|
G_TIME_SPAN_DAY => '2.26', |
460
|
|
|
|
|
|
|
G_GNUC_DEPRECATED_FOR => '2.26', |
461
|
|
|
|
|
|
|
GTimeZone => '2.26', |
462
|
|
|
|
|
|
|
GTimeSpan => '2.26', |
463
|
|
|
|
|
|
|
|
464
|
|
|
|
|
|
|
g_variant_unref => '2.24', |
465
|
|
|
|
|
|
|
g_variant_type_string_scan => '2.24', |
466
|
|
|
|
|
|
|
g_variant_type_new => '2.24', |
467
|
|
|
|
|
|
|
g_variant_store => '2.24', |
468
|
|
|
|
|
|
|
g_variant_ref_sink => '2.24', |
469
|
|
|
|
|
|
|
g_variant_ref => '2.24', |
470
|
|
|
|
|
|
|
g_variant_print_string => '2.24', |
471
|
|
|
|
|
|
|
g_variant_print => '2.24', |
472
|
|
|
|
|
|
|
g_variant_new_variant => '2.24', |
473
|
|
|
|
|
|
|
g_variant_new_va => '2.24', |
474
|
|
|
|
|
|
|
g_variant_new_uint64 => '2.24', |
475
|
|
|
|
|
|
|
g_variant_new_uint32 => '2.24', |
476
|
|
|
|
|
|
|
g_variant_new_uint16 => '2.24', |
477
|
|
|
|
|
|
|
g_variant_new_tuple => '2.24', |
478
|
|
|
|
|
|
|
g_variant_new_strv => '2.24', |
479
|
|
|
|
|
|
|
g_variant_new_string => '2.24', |
480
|
|
|
|
|
|
|
g_variant_new_signature => '2.24', |
481
|
|
|
|
|
|
|
g_variant_new_object_path => '2.24', |
482
|
|
|
|
|
|
|
g_variant_new_maybe => '2.24', |
483
|
|
|
|
|
|
|
g_variant_new_int64 => '2.24', |
484
|
|
|
|
|
|
|
g_variant_new_int32 => '2.24', |
485
|
|
|
|
|
|
|
g_variant_new_int16 => '2.24', |
486
|
|
|
|
|
|
|
g_variant_new_handle => '2.24', |
487
|
|
|
|
|
|
|
g_variant_new_from_data => '2.24', |
488
|
|
|
|
|
|
|
g_variant_new_double => '2.24', |
489
|
|
|
|
|
|
|
g_variant_new_dict_entry => '2.24', |
490
|
|
|
|
|
|
|
g_variant_new_byte => '2.24', |
491
|
|
|
|
|
|
|
g_variant_new_boolean => '2.24', |
492
|
|
|
|
|
|
|
g_variant_new_array => '2.24', |
493
|
|
|
|
|
|
|
g_variant_new => '2.24', |
494
|
|
|
|
|
|
|
g_variant_n_children => '2.24', |
495
|
|
|
|
|
|
|
g_variant_iter_next_value => '2.24', |
496
|
|
|
|
|
|
|
g_variant_iter_next => '2.24', |
497
|
|
|
|
|
|
|
g_variant_iter_new => '2.24', |
498
|
|
|
|
|
|
|
g_variant_iter_n_children => '2.24', |
499
|
|
|
|
|
|
|
g_variant_iter_loop => '2.24', |
500
|
|
|
|
|
|
|
g_variant_iter_init => '2.24', |
501
|
|
|
|
|
|
|
g_variant_iter_free => '2.24', |
502
|
|
|
|
|
|
|
g_variant_iter_copy => '2.24', |
503
|
|
|
|
|
|
|
g_variant_is_signature => '2.24', |
504
|
|
|
|
|
|
|
g_variant_is_of_type => '2.24', |
505
|
|
|
|
|
|
|
g_variant_is_object_path => '2.24', |
506
|
|
|
|
|
|
|
g_variant_is_normal_form => '2.24', |
507
|
|
|
|
|
|
|
g_variant_is_container => '2.24', |
508
|
|
|
|
|
|
|
g_variant_hash => '2.24', |
509
|
|
|
|
|
|
|
g_variant_get_variant => '2.24', |
510
|
|
|
|
|
|
|
g_variant_get_va => '2.24', |
511
|
|
|
|
|
|
|
g_variant_get_uint64 => '2.24', |
512
|
|
|
|
|
|
|
g_variant_get_uint32 => '2.24', |
513
|
|
|
|
|
|
|
g_variant_get_uint16 => '2.24', |
514
|
|
|
|
|
|
|
g_variant_get_type_string => '2.24', |
515
|
|
|
|
|
|
|
g_variant_get_type => '2.24', |
516
|
|
|
|
|
|
|
g_variant_get_strv => '2.24', |
517
|
|
|
|
|
|
|
g_variant_get_string => '2.24', |
518
|
|
|
|
|
|
|
g_variant_get_size => '2.24', |
519
|
|
|
|
|
|
|
g_variant_get_normal_form => '2.24', |
520
|
|
|
|
|
|
|
g_variant_get_maybe => '2.24', |
521
|
|
|
|
|
|
|
g_variant_get_int64 => '2.24', |
522
|
|
|
|
|
|
|
g_variant_get_int32 => '2.24', |
523
|
|
|
|
|
|
|
g_variant_get_int16 => '2.24', |
524
|
|
|
|
|
|
|
g_variant_get_handle => '2.24', |
525
|
|
|
|
|
|
|
g_variant_get_fixed_array => '2.24', |
526
|
|
|
|
|
|
|
g_variant_get_double => '2.24', |
527
|
|
|
|
|
|
|
g_variant_get_data => '2.24', |
528
|
|
|
|
|
|
|
g_variant_get_child_value => '2.24', |
529
|
|
|
|
|
|
|
g_variant_get_child => '2.24', |
530
|
|
|
|
|
|
|
g_variant_get_byte => '2.24', |
531
|
|
|
|
|
|
|
g_variant_get_boolean => '2.24', |
532
|
|
|
|
|
|
|
g_variant_get => '2.24', |
533
|
|
|
|
|
|
|
g_variant_equal => '2.24', |
534
|
|
|
|
|
|
|
g_variant_dup_strv => '2.24', |
535
|
|
|
|
|
|
|
g_variant_dup_string => '2.24', |
536
|
|
|
|
|
|
|
g_variant_classify => '2.24', |
537
|
|
|
|
|
|
|
g_variant_byteswap => '2.24', |
538
|
|
|
|
|
|
|
g_variant_builder_unref => '2.24', |
539
|
|
|
|
|
|
|
g_variant_builder_ref => '2.24', |
540
|
|
|
|
|
|
|
g_variant_builder_open => '2.24', |
541
|
|
|
|
|
|
|
g_variant_builder_new => '2.24', |
542
|
|
|
|
|
|
|
g_variant_builder_init => '2.24', |
543
|
|
|
|
|
|
|
g_variant_builder_end => '2.24', |
544
|
|
|
|
|
|
|
g_variant_builder_close => '2.24', |
545
|
|
|
|
|
|
|
g_variant_builder_clear => '2.24', |
546
|
|
|
|
|
|
|
g_variant_builder_add_value => '2.24', |
547
|
|
|
|
|
|
|
g_variant_builder_add => '2.24', |
548
|
|
|
|
|
|
|
g_try_realloc_n => '2.24', |
549
|
|
|
|
|
|
|
g_try_malloc_n => '2.24', |
550
|
|
|
|
|
|
|
g_try_malloc0_n => '2.24', |
551
|
|
|
|
|
|
|
g_realloc_n => '2.24', |
552
|
|
|
|
|
|
|
g_malloc_n => '2.24', |
553
|
|
|
|
|
|
|
g_malloc0_n => '2.24', |
554
|
|
|
|
|
|
|
g_bit_unlock => '2.24', |
555
|
|
|
|
|
|
|
g_bit_trylock => '2.24', |
556
|
|
|
|
|
|
|
g_bit_lock => '2.24', |
557
|
|
|
|
|
|
|
GVariantClass => '2.24', |
558
|
|
|
|
|
|
|
GVariant => '2.24', |
559
|
|
|
|
|
|
|
|
560
|
|
|
|
|
|
|
g_tree_unref => '2.22', |
561
|
|
|
|
|
|
|
g_tree_ref => '2.22', |
562
|
|
|
|
|
|
|
g_test_log_set_fatal_handler => '2.22', |
563
|
|
|
|
|
|
|
g_reload_user_special_dirs_cache => '2.22', |
564
|
|
|
|
|
|
|
g_ptr_array_unref => '2.22', |
565
|
|
|
|
|
|
|
g_ptr_array_set_free_func => '2.22', |
566
|
|
|
|
|
|
|
g_ptr_array_ref => '2.22', |
567
|
|
|
|
|
|
|
g_ptr_array_new_with_free_func => '2.22', |
568
|
|
|
|
|
|
|
g_mkstemp_full => '2.22', |
569
|
|
|
|
|
|
|
g_mapped_file_ref => '2.22', |
570
|
|
|
|
|
|
|
g_main_context_push_thread_default => '2.22', |
571
|
|
|
|
|
|
|
g_main_context_pop_thread_default => '2.22', |
572
|
|
|
|
|
|
|
g_main_context_get_thread_default => '2.22', |
573
|
|
|
|
|
|
|
g_int64_hash => '2.22', |
574
|
|
|
|
|
|
|
g_int64_equal => '2.22', |
575
|
|
|
|
|
|
|
g_hostname_to_unicode => '2.22', |
576
|
|
|
|
|
|
|
g_hostname_to_ascii => '2.22', |
577
|
|
|
|
|
|
|
g_hostname_is_non_ascii => '2.22', |
578
|
|
|
|
|
|
|
g_hostname_is_ip_address => '2.22', |
579
|
|
|
|
|
|
|
g_hostname_is_ascii_encoded => '2.22', |
580
|
|
|
|
|
|
|
g_error_new_valist => '2.22', |
581
|
|
|
|
|
|
|
g_double_hash => '2.22', |
582
|
|
|
|
|
|
|
g_double_equal => '2.22', |
583
|
|
|
|
|
|
|
g_byte_array_unref => '2.22', |
584
|
|
|
|
|
|
|
g_byte_array_ref => '2.22', |
585
|
|
|
|
|
|
|
g_array_unref => '2.22', |
586
|
|
|
|
|
|
|
g_array_ref => '2.22', |
587
|
|
|
|
|
|
|
g_array_get_element_size => '2.22', |
588
|
|
|
|
|
|
|
G_GUINTPTR_FORMAT => '2.22', |
589
|
|
|
|
|
|
|
G_GINTPTR_MODIFIER => '2.22', |
590
|
|
|
|
|
|
|
G_GINTPTR_FORMAT => '2.22', |
591
|
|
|
|
|
|
|
GTestLogFatalFunc => '2.22', |
592
|
|
|
|
|
|
|
|
593
|
|
|
|
|
|
|
g_thread_get_initialized => '2.20', |
594
|
|
|
|
|
|
|
g_poll => '2.20', |
595
|
|
|
|
|
|
|
g_base64_decode_inplace => '2.20', |
596
|
|
|
|
|
|
|
g_assert_no_error => '2.20', |
597
|
|
|
|
|
|
|
g_assert_error => '2.20', |
598
|
|
|
|
|
|
|
G_STATIC_ASSERT => '2.20', |
599
|
|
|
|
|
|
|
G_PASTE => '2.20', |
600
|
|
|
|
|
|
|
G_GOFFSET_MODIFIER => '2.20', |
601
|
|
|
|
|
|
|
G_GOFFSET_FORMAT => '2.20', |
602
|
|
|
|
|
|
|
G_GOFFSET_CONSTANT => '2.20', |
603
|
|
|
|
|
|
|
|
604
|
|
|
|
|
|
|
guintptr => '2.18', |
605
|
|
|
|
|
|
|
gintptr => '2.18', |
606
|
|
|
|
|
|
|
g_utime => '2.18', |
607
|
|
|
|
|
|
|
g_set_error_literal => '2.18', |
608
|
|
|
|
|
|
|
g_markup_parse_context_push => '2.18', |
609
|
|
|
|
|
|
|
g_markup_parse_context_pop => '2.18', |
610
|
|
|
|
|
|
|
g_markup_parse_context_get_user_data => '2.18', |
611
|
|
|
|
|
|
|
g_dpgettext2 => '2.18', |
612
|
|
|
|
|
|
|
g_dngettext => '2.18', |
613
|
|
|
|
|
|
|
g_dgettext => '2.18', |
614
|
|
|
|
|
|
|
g_checksum_reset => '2.18', |
615
|
|
|
|
|
|
|
NC_ => '2.18', |
616
|
|
|
|
|
|
|
G_GNUC_ALLOC_SIZE2 => '2.18', |
617
|
|
|
|
|
|
|
G_GNUC_ALLOC_SIZE => '2.18', |
618
|
|
|
|
|
|
|
|
619
|
|
|
|
|
|
|
g_win32_get_package_installation_directory_of_module => '2.16', |
620
|
|
|
|
|
|
|
g_warn_if_reached => '2.16', |
621
|
|
|
|
|
|
|
g_warn_if_fail => '2.16', |
622
|
|
|
|
|
|
|
g_uri_unescape_string => '2.16', |
623
|
|
|
|
|
|
|
g_uri_unescape_segment => '2.16', |
624
|
|
|
|
|
|
|
g_uri_parse_scheme => '2.16', |
625
|
|
|
|
|
|
|
g_uri_escape_string => '2.16', |
626
|
|
|
|
|
|
|
g_test_trap_reached_timeout => '2.16', |
627
|
|
|
|
|
|
|
g_test_trap_has_passed => '2.16', |
628
|
|
|
|
|
|
|
g_test_trap_fork => '2.16', |
629
|
|
|
|
|
|
|
g_test_trap_assert_stdout_unmatched => '2.16', |
630
|
|
|
|
|
|
|
g_test_trap_assert_stdout => '2.16', |
631
|
|
|
|
|
|
|
g_test_trap_assert_stderr_unmatched => '2.16', |
632
|
|
|
|
|
|
|
g_test_trap_assert_stderr => '2.16', |
633
|
|
|
|
|
|
|
g_test_trap_assert_passed => '2.16', |
634
|
|
|
|
|
|
|
g_test_trap_assert_failed => '2.16', |
635
|
|
|
|
|
|
|
g_test_timer_start => '2.16', |
636
|
|
|
|
|
|
|
g_test_timer_last => '2.16', |
637
|
|
|
|
|
|
|
g_test_timer_elapsed => '2.16', |
638
|
|
|
|
|
|
|
g_test_suite_add_suite => '2.16', |
639
|
|
|
|
|
|
|
g_test_suite_add => '2.16', |
640
|
|
|
|
|
|
|
g_test_run_suite => '2.16', |
641
|
|
|
|
|
|
|
g_test_run => '2.16', |
642
|
|
|
|
|
|
|
g_test_rand_int_range => '2.16', |
643
|
|
|
|
|
|
|
g_test_rand_int => '2.16', |
644
|
|
|
|
|
|
|
g_test_rand_double_range => '2.16', |
645
|
|
|
|
|
|
|
g_test_rand_double => '2.16', |
646
|
|
|
|
|
|
|
g_test_rand_bit => '2.16', |
647
|
|
|
|
|
|
|
g_test_queue_unref => '2.16', |
648
|
|
|
|
|
|
|
g_test_queue_free => '2.16', |
649
|
|
|
|
|
|
|
g_test_queue_destroy => '2.16', |
650
|
|
|
|
|
|
|
g_test_minimized_result => '2.16', |
651
|
|
|
|
|
|
|
g_test_message => '2.16', |
652
|
|
|
|
|
|
|
g_test_maximized_result => '2.16', |
653
|
|
|
|
|
|
|
g_test_init => '2.16', |
654
|
|
|
|
|
|
|
g_test_get_root => '2.16', |
655
|
|
|
|
|
|
|
g_test_create_suite => '2.16', |
656
|
|
|
|
|
|
|
g_test_create_case => '2.16', |
657
|
|
|
|
|
|
|
g_test_bug_base => '2.16', |
658
|
|
|
|
|
|
|
g_test_bug => '2.16', |
659
|
|
|
|
|
|
|
g_test_add_func => '2.16', |
660
|
|
|
|
|
|
|
g_test_add_data_func => '2.16', |
661
|
|
|
|
|
|
|
g_test_add => '2.16', |
662
|
|
|
|
|
|
|
g_string_append_uri_escaped => '2.16', |
663
|
|
|
|
|
|
|
g_strcmp0 => '2.16', |
664
|
|
|
|
|
|
|
g_propagate_prefixed_error => '2.16', |
665
|
|
|
|
|
|
|
g_prefix_error => '2.16', |
666
|
|
|
|
|
|
|
g_markup_parse_context_get_element_stack => '2.16', |
667
|
|
|
|
|
|
|
g_markup_collect_attributes => '2.16', |
668
|
|
|
|
|
|
|
g_hash_table_iter_steal => '2.16', |
669
|
|
|
|
|
|
|
g_hash_table_iter_remove => '2.16', |
670
|
|
|
|
|
|
|
g_hash_table_iter_next => '2.16', |
671
|
|
|
|
|
|
|
g_hash_table_iter_init => '2.16', |
672
|
|
|
|
|
|
|
g_hash_table_iter_get_hash_table => '2.16', |
673
|
|
|
|
|
|
|
g_format_size_for_display => '2.16', |
674
|
|
|
|
|
|
|
g_dpgettext => '2.16', |
675
|
|
|
|
|
|
|
g_compute_checksum_for_string => '2.16', |
676
|
|
|
|
|
|
|
g_compute_checksum_for_data => '2.16', |
677
|
|
|
|
|
|
|
g_checksum_update => '2.16', |
678
|
|
|
|
|
|
|
g_checksum_type_get_length => '2.16', |
679
|
|
|
|
|
|
|
g_checksum_new => '2.16', |
680
|
|
|
|
|
|
|
g_checksum_get_string => '2.16', |
681
|
|
|
|
|
|
|
g_checksum_get_digest => '2.16', |
682
|
|
|
|
|
|
|
g_checksum_free => '2.16', |
683
|
|
|
|
|
|
|
g_checksum_copy => '2.16', |
684
|
|
|
|
|
|
|
g_async_queue_new_full => '2.16', |
685
|
|
|
|
|
|
|
g_assert_cmpuint => '2.16', |
686
|
|
|
|
|
|
|
g_assert_cmpstr => '2.16', |
687
|
|
|
|
|
|
|
g_assert_cmpint => '2.16', |
688
|
|
|
|
|
|
|
g_assert_cmphex => '2.16', |
689
|
|
|
|
|
|
|
g_assert_cmpfloat => '2.16', |
690
|
|
|
|
|
|
|
GChecksumType => '2.16', |
691
|
|
|
|
|
|
|
GChecksum => '2.16', |
692
|
|
|
|
|
|
|
C_ => '2.16', |
693
|
|
|
|
|
|
|
|
694
|
|
|
|
|
|
|
goffset => '2.14', |
695
|
|
|
|
|
|
|
g_unichar_iszerowidth => '2.14', |
696
|
|
|
|
|
|
|
g_unichar_ismark => '2.14', |
697
|
|
|
|
|
|
|
g_unichar_get_script => '2.14', |
698
|
|
|
|
|
|
|
g_unichar_combining_class => '2.14', |
699
|
|
|
|
|
|
|
g_timeout_source_new_seconds => '2.14', |
700
|
|
|
|
|
|
|
g_timeout_add_seconds_full => '2.14', |
701
|
|
|
|
|
|
|
g_timeout_add_seconds => '2.14', |
702
|
|
|
|
|
|
|
g_string_vprintf => '2.14', |
703
|
|
|
|
|
|
|
g_string_overwrite_len => '2.14', |
704
|
|
|
|
|
|
|
g_string_overwrite => '2.14', |
705
|
|
|
|
|
|
|
g_string_chunk_clear => '2.14', |
706
|
|
|
|
|
|
|
g_string_append_vprintf => '2.14', |
707
|
|
|
|
|
|
|
g_slice_dup => '2.14', |
708
|
|
|
|
|
|
|
g_slice_copy => '2.14', |
709
|
|
|
|
|
|
|
g_sequence_swap => '2.14', |
710
|
|
|
|
|
|
|
g_sequence_sort_iter => '2.14', |
711
|
|
|
|
|
|
|
g_sequence_sort_changed_iter => '2.14', |
712
|
|
|
|
|
|
|
g_sequence_sort_changed => '2.14', |
713
|
|
|
|
|
|
|
g_sequence_sort => '2.14', |
714
|
|
|
|
|
|
|
g_sequence_set => '2.14', |
715
|
|
|
|
|
|
|
g_sequence_search_iter => '2.14', |
716
|
|
|
|
|
|
|
g_sequence_search => '2.14', |
717
|
|
|
|
|
|
|
g_sequence_remove_range => '2.14', |
718
|
|
|
|
|
|
|
g_sequence_remove => '2.14', |
719
|
|
|
|
|
|
|
g_sequence_range_get_midpoint => '2.14', |
720
|
|
|
|
|
|
|
g_sequence_prepend => '2.14', |
721
|
|
|
|
|
|
|
g_sequence_new => '2.14', |
722
|
|
|
|
|
|
|
g_sequence_move_range => '2.14', |
723
|
|
|
|
|
|
|
g_sequence_move => '2.14', |
724
|
|
|
|
|
|
|
g_sequence_iter_prev => '2.14', |
725
|
|
|
|
|
|
|
g_sequence_iter_next => '2.14', |
726
|
|
|
|
|
|
|
g_sequence_iter_move => '2.14', |
727
|
|
|
|
|
|
|
g_sequence_iter_is_end => '2.14', |
728
|
|
|
|
|
|
|
g_sequence_iter_is_begin => '2.14', |
729
|
|
|
|
|
|
|
g_sequence_iter_get_sequence => '2.14', |
730
|
|
|
|
|
|
|
g_sequence_iter_get_position => '2.14', |
731
|
|
|
|
|
|
|
g_sequence_iter_compare => '2.14', |
732
|
|
|
|
|
|
|
g_sequence_insert_sorted_iter => '2.14', |
733
|
|
|
|
|
|
|
g_sequence_insert_sorted => '2.14', |
734
|
|
|
|
|
|
|
g_sequence_insert_before => '2.14', |
735
|
|
|
|
|
|
|
g_sequence_get_length => '2.14', |
736
|
|
|
|
|
|
|
g_sequence_get_iter_at_pos => '2.14', |
737
|
|
|
|
|
|
|
g_sequence_get_end_iter => '2.14', |
738
|
|
|
|
|
|
|
g_sequence_get_begin_iter => '2.14', |
739
|
|
|
|
|
|
|
g_sequence_get => '2.14', |
740
|
|
|
|
|
|
|
g_sequence_free => '2.14', |
741
|
|
|
|
|
|
|
g_sequence_foreach_range => '2.14', |
742
|
|
|
|
|
|
|
g_sequence_foreach => '2.14', |
743
|
|
|
|
|
|
|
g_sequence_append => '2.14', |
744
|
|
|
|
|
|
|
g_regex_unref => '2.14', |
745
|
|
|
|
|
|
|
g_regex_split_simple => '2.14', |
746
|
|
|
|
|
|
|
g_regex_split_full => '2.14', |
747
|
|
|
|
|
|
|
g_regex_split => '2.14', |
748
|
|
|
|
|
|
|
g_regex_replace_literal => '2.14', |
749
|
|
|
|
|
|
|
g_regex_replace_eval => '2.14', |
750
|
|
|
|
|
|
|
g_regex_replace => '2.14', |
751
|
|
|
|
|
|
|
g_regex_ref => '2.14', |
752
|
|
|
|
|
|
|
g_regex_new => '2.14', |
753
|
|
|
|
|
|
|
g_regex_match_simple => '2.14', |
754
|
|
|
|
|
|
|
g_regex_match_full => '2.14', |
755
|
|
|
|
|
|
|
g_regex_match_all_full => '2.14', |
756
|
|
|
|
|
|
|
g_regex_match_all => '2.14', |
757
|
|
|
|
|
|
|
g_regex_match => '2.14', |
758
|
|
|
|
|
|
|
g_regex_get_string_number => '2.14', |
759
|
|
|
|
|
|
|
g_regex_get_pattern => '2.14', |
760
|
|
|
|
|
|
|
g_regex_get_max_backref => '2.14', |
761
|
|
|
|
|
|
|
g_regex_get_capture_count => '2.14', |
762
|
|
|
|
|
|
|
g_regex_escape_string => '2.14', |
763
|
|
|
|
|
|
|
g_regex_check_replacement => '2.14', |
764
|
|
|
|
|
|
|
g_queue_init => '2.14', |
765
|
|
|
|
|
|
|
g_queue_clear => '2.14', |
766
|
|
|
|
|
|
|
g_option_context_get_help => '2.14', |
767
|
|
|
|
|
|
|
g_once_init_leave => '2.14', |
768
|
|
|
|
|
|
|
g_once_init_enter => '2.14', |
769
|
|
|
|
|
|
|
g_match_info_next => '2.14', |
770
|
|
|
|
|
|
|
g_match_info_matches => '2.14', |
771
|
|
|
|
|
|
|
g_match_info_is_partial_match => '2.14', |
772
|
|
|
|
|
|
|
g_match_info_get_string => '2.14', |
773
|
|
|
|
|
|
|
g_match_info_get_regex => '2.14', |
774
|
|
|
|
|
|
|
g_match_info_get_match_count => '2.14', |
775
|
|
|
|
|
|
|
g_match_info_free => '2.14', |
776
|
|
|
|
|
|
|
g_match_info_fetch_pos => '2.14', |
777
|
|
|
|
|
|
|
g_match_info_fetch_named_pos => '2.14', |
778
|
|
|
|
|
|
|
g_match_info_fetch_named => '2.14', |
779
|
|
|
|
|
|
|
g_match_info_fetch_all => '2.14', |
780
|
|
|
|
|
|
|
g_match_info_fetch => '2.14', |
781
|
|
|
|
|
|
|
g_match_info_expand_references => '2.14', |
782
|
|
|
|
|
|
|
g_key_file_load_from_dirs => '2.14', |
783
|
|
|
|
|
|
|
g_hash_table_get_values => '2.14', |
784
|
|
|
|
|
|
|
g_hash_table_get_keys => '2.14', |
785
|
|
|
|
|
|
|
g_get_user_special_dir => '2.14', |
786
|
|
|
|
|
|
|
G_REGEX_ERROR => '2.14', |
787
|
|
|
|
|
|
|
G_QUEUE_INIT => '2.14', |
788
|
|
|
|
|
|
|
G_MINSSIZE => '2.14', |
789
|
|
|
|
|
|
|
G_MAXSSIZE => '2.14', |
790
|
|
|
|
|
|
|
G_KEY_FILE_DESKTOP_TYPE_LINK => '2.14', |
791
|
|
|
|
|
|
|
G_KEY_FILE_DESKTOP_TYPE_DIRECTORY => '2.14', |
792
|
|
|
|
|
|
|
G_KEY_FILE_DESKTOP_TYPE_APPLICATION => '2.14', |
793
|
|
|
|
|
|
|
G_KEY_FILE_DESKTOP_KEY_VERSION => '2.14', |
794
|
|
|
|
|
|
|
G_KEY_FILE_DESKTOP_KEY_URL => '2.14', |
795
|
|
|
|
|
|
|
G_KEY_FILE_DESKTOP_KEY_TYPE => '2.14', |
796
|
|
|
|
|
|
|
G_KEY_FILE_DESKTOP_KEY_TRY_EXEC => '2.14', |
797
|
|
|
|
|
|
|
G_KEY_FILE_DESKTOP_KEY_TERMINAL => '2.14', |
798
|
|
|
|
|
|
|
G_KEY_FILE_DESKTOP_KEY_STARTUP_WM_CLASS => '2.14', |
799
|
|
|
|
|
|
|
G_KEY_FILE_DESKTOP_KEY_STARTUP_NOTIFY => '2.14', |
800
|
|
|
|
|
|
|
G_KEY_FILE_DESKTOP_KEY_PATH => '2.14', |
801
|
|
|
|
|
|
|
G_KEY_FILE_DESKTOP_KEY_ONLY_SHOW_IN => '2.14', |
802
|
|
|
|
|
|
|
G_KEY_FILE_DESKTOP_KEY_NO_DISPLAY => '2.14', |
803
|
|
|
|
|
|
|
G_KEY_FILE_DESKTOP_KEY_NOT_SHOW_IN => '2.14', |
804
|
|
|
|
|
|
|
G_KEY_FILE_DESKTOP_KEY_NAME => '2.14', |
805
|
|
|
|
|
|
|
G_KEY_FILE_DESKTOP_KEY_MIME_TYPE => '2.14', |
806
|
|
|
|
|
|
|
G_KEY_FILE_DESKTOP_KEY_ICON => '2.14', |
807
|
|
|
|
|
|
|
G_KEY_FILE_DESKTOP_KEY_HIDDEN => '2.14', |
808
|
|
|
|
|
|
|
G_KEY_FILE_DESKTOP_KEY_GENERIC_NAME => '2.14', |
809
|
|
|
|
|
|
|
G_KEY_FILE_DESKTOP_KEY_EXEC => '2.14', |
810
|
|
|
|
|
|
|
G_KEY_FILE_DESKTOP_KEY_COMMENT => '2.14', |
811
|
|
|
|
|
|
|
G_KEY_FILE_DESKTOP_KEY_CATEGORIES => '2.14', |
812
|
|
|
|
|
|
|
G_KEY_FILE_DESKTOP_GROUP => '2.14', |
813
|
|
|
|
|
|
|
G_GNUC_MAY_ALIAS => '2.14', |
814
|
|
|
|
|
|
|
GUserDirectory => '2.14', |
815
|
|
|
|
|
|
|
GRegexMatchFlags => '2.14', |
816
|
|
|
|
|
|
|
GRegexEvalCallback => '2.14', |
817
|
|
|
|
|
|
|
GRegexError => '2.14', |
818
|
|
|
|
|
|
|
GRegexCompileFlags => '2.14', |
819
|
|
|
|
|
|
|
GRegex => '2.14', |
820
|
|
|
|
|
|
|
|
821
|
|
|
|
|
|
|
g_unichar_iswide_cjk => '2.12', |
822
|
|
|
|
|
|
|
g_time_val_to_iso8601 => '2.12', |
823
|
|
|
|
|
|
|
g_time_val_from_iso8601 => '2.12', |
824
|
|
|
|
|
|
|
g_source_set_funcs => '2.12', |
825
|
|
|
|
|
|
|
g_source_is_destroyed => '2.12', |
826
|
|
|
|
|
|
|
g_option_context_set_translation_domain => '2.12', |
827
|
|
|
|
|
|
|
g_option_context_set_translate_func => '2.12', |
828
|
|
|
|
|
|
|
g_option_context_set_summary => '2.12', |
829
|
|
|
|
|
|
|
g_option_context_set_description => '2.12', |
830
|
|
|
|
|
|
|
g_option_context_get_summary => '2.12', |
831
|
|
|
|
|
|
|
g_option_context_get_description => '2.12', |
832
|
|
|
|
|
|
|
g_main_current_source => '2.12', |
833
|
|
|
|
|
|
|
g_key_file_set_double_list => '2.12', |
834
|
|
|
|
|
|
|
g_key_file_set_double => '2.12', |
835
|
|
|
|
|
|
|
g_key_file_get_double_list => '2.12', |
836
|
|
|
|
|
|
|
g_key_file_get_double => '2.12', |
837
|
|
|
|
|
|
|
g_hash_table_steal_all => '2.12', |
838
|
|
|
|
|
|
|
g_hash_table_remove_all => '2.12', |
839
|
|
|
|
|
|
|
g_bookmark_file_to_file => '2.12', |
840
|
|
|
|
|
|
|
g_bookmark_file_to_data => '2.12', |
841
|
|
|
|
|
|
|
g_bookmark_file_set_visited => '2.12', |
842
|
|
|
|
|
|
|
g_bookmark_file_set_title => '2.12', |
843
|
|
|
|
|
|
|
g_bookmark_file_set_modified => '2.12', |
844
|
|
|
|
|
|
|
g_bookmark_file_set_mime_type => '2.12', |
845
|
|
|
|
|
|
|
g_bookmark_file_set_is_private => '2.12', |
846
|
|
|
|
|
|
|
g_bookmark_file_set_icon => '2.12', |
847
|
|
|
|
|
|
|
g_bookmark_file_set_groups => '2.12', |
848
|
|
|
|
|
|
|
g_bookmark_file_set_description => '2.12', |
849
|
|
|
|
|
|
|
g_bookmark_file_set_app_info => '2.12', |
850
|
|
|
|
|
|
|
g_bookmark_file_set_added => '2.12', |
851
|
|
|
|
|
|
|
g_bookmark_file_remove_item => '2.12', |
852
|
|
|
|
|
|
|
g_bookmark_file_remove_group => '2.12', |
853
|
|
|
|
|
|
|
g_bookmark_file_remove_application => '2.12', |
854
|
|
|
|
|
|
|
g_bookmark_file_new => '2.12', |
855
|
|
|
|
|
|
|
g_bookmark_file_move_item => '2.12', |
856
|
|
|
|
|
|
|
g_bookmark_file_load_from_file => '2.12', |
857
|
|
|
|
|
|
|
g_bookmark_file_load_from_data_dirs => '2.12', |
858
|
|
|
|
|
|
|
g_bookmark_file_load_from_data => '2.12', |
859
|
|
|
|
|
|
|
g_bookmark_file_has_item => '2.12', |
860
|
|
|
|
|
|
|
g_bookmark_file_has_group => '2.12', |
861
|
|
|
|
|
|
|
g_bookmark_file_has_application => '2.12', |
862
|
|
|
|
|
|
|
g_bookmark_file_get_visited => '2.12', |
863
|
|
|
|
|
|
|
g_bookmark_file_get_uris => '2.12', |
864
|
|
|
|
|
|
|
g_bookmark_file_get_title => '2.12', |
865
|
|
|
|
|
|
|
g_bookmark_file_get_size => '2.12', |
866
|
|
|
|
|
|
|
g_bookmark_file_get_modified => '2.12', |
867
|
|
|
|
|
|
|
g_bookmark_file_get_mime_type => '2.12', |
868
|
|
|
|
|
|
|
g_bookmark_file_get_is_private => '2.12', |
869
|
|
|
|
|
|
|
g_bookmark_file_get_icon => '2.12', |
870
|
|
|
|
|
|
|
g_bookmark_file_get_groups => '2.12', |
871
|
|
|
|
|
|
|
g_bookmark_file_get_description => '2.12', |
872
|
|
|
|
|
|
|
g_bookmark_file_get_applications => '2.12', |
873
|
|
|
|
|
|
|
g_bookmark_file_get_app_info => '2.12', |
874
|
|
|
|
|
|
|
g_bookmark_file_get_added => '2.12', |
875
|
|
|
|
|
|
|
g_bookmark_file_free => '2.12', |
876
|
|
|
|
|
|
|
g_bookmark_file_add_group => '2.12', |
877
|
|
|
|
|
|
|
g_bookmark_file_add_application => '2.12', |
878
|
|
|
|
|
|
|
g_base64_encode_step => '2.12', |
879
|
|
|
|
|
|
|
g_base64_encode_close => '2.12', |
880
|
|
|
|
|
|
|
g_base64_encode => '2.12', |
881
|
|
|
|
|
|
|
g_base64_decode_step => '2.12', |
882
|
|
|
|
|
|
|
g_base64_decode => '2.12', |
883
|
|
|
|
|
|
|
g_ascii_strtoll => '2.12', |
884
|
|
|
|
|
|
|
|
885
|
|
|
|
|
|
|
g_thread_pool_set_sort_function => '2.10', |
886
|
|
|
|
|
|
|
g_thread_pool_set_max_idle_time => '2.10', |
887
|
|
|
|
|
|
|
g_thread_pool_get_max_idle_time => '2.10', |
888
|
|
|
|
|
|
|
g_thread_foreach => '2.10', |
889
|
|
|
|
|
|
|
g_slist_insert_sorted_with_data => '2.10', |
890
|
|
|
|
|
|
|
g_slist_free1 => '2.10', |
891
|
|
|
|
|
|
|
g_slice_new0 => '2.10', |
892
|
|
|
|
|
|
|
g_slice_new => '2.10', |
893
|
|
|
|
|
|
|
g_slice_free_chain_with_offset => '2.10', |
894
|
|
|
|
|
|
|
g_slice_free_chain => '2.10', |
895
|
|
|
|
|
|
|
g_slice_free1 => '2.10', |
896
|
|
|
|
|
|
|
g_slice_free => '2.10', |
897
|
|
|
|
|
|
|
g_slice_alloc0 => '2.10', |
898
|
|
|
|
|
|
|
g_slice_alloc => '2.10', |
899
|
|
|
|
|
|
|
g_main_context_is_owner => '2.10', |
900
|
|
|
|
|
|
|
g_list_insert_sorted_with_data => '2.10', |
901
|
|
|
|
|
|
|
g_intern_string => '2.10', |
902
|
|
|
|
|
|
|
g_intern_static_string => '2.10', |
903
|
|
|
|
|
|
|
g_hash_table_unref => '2.10', |
904
|
|
|
|
|
|
|
g_hash_table_ref => '2.10', |
905
|
|
|
|
|
|
|
g_date_set_time_val => '2.10', |
906
|
|
|
|
|
|
|
g_date_set_time_t => '2.10', |
907
|
|
|
|
|
|
|
g_async_queue_sort_unlocked => '2.10', |
908
|
|
|
|
|
|
|
g_async_queue_sort => '2.10', |
909
|
|
|
|
|
|
|
g_async_queue_push_sorted_unlocked => '2.10', |
910
|
|
|
|
|
|
|
g_async_queue_push_sorted => '2.10', |
911
|
|
|
|
|
|
|
G_GUINT64_CONSTANT => '2.10', |
912
|
|
|
|
|
|
|
G_GNUC_WARN_UNUSED_RESULT => '2.10', |
913
|
|
|
|
|
|
|
|
914
|
|
|
|
|
|
|
g_win32_locale_filename_from_utf8 => '2.8', |
915
|
|
|
|
|
|
|
g_utf8_collate_key_for_filename => '2.8', |
916
|
|
|
|
|
|
|
g_try_renew => '2.8', |
917
|
|
|
|
|
|
|
g_try_new0 => '2.8', |
918
|
|
|
|
|
|
|
g_try_new => '2.8', |
919
|
|
|
|
|
|
|
g_try_malloc0 => '2.8', |
920
|
|
|
|
|
|
|
g_mkdir_with_parents => '2.8', |
921
|
|
|
|
|
|
|
g_mapped_file_new => '2.8', |
922
|
|
|
|
|
|
|
g_mapped_file_get_length => '2.8', |
923
|
|
|
|
|
|
|
g_mapped_file_get_contents => '2.8', |
924
|
|
|
|
|
|
|
g_mapped_file_free => '2.8', |
925
|
|
|
|
|
|
|
g_listenv => '2.8', |
926
|
|
|
|
|
|
|
g_get_host_name => '2.8', |
927
|
|
|
|
|
|
|
g_file_set_contents => '2.8', |
928
|
|
|
|
|
|
|
g_datalist_unset_flags => '2.8', |
929
|
|
|
|
|
|
|
g_datalist_set_flags => '2.8', |
930
|
|
|
|
|
|
|
g_datalist_get_flags => '2.8', |
931
|
|
|
|
|
|
|
g_creat => '2.8', |
932
|
|
|
|
|
|
|
g_chmod => '2.8', |
933
|
|
|
|
|
|
|
g_chdir => '2.8', |
934
|
|
|
|
|
|
|
g_build_pathv => '2.8', |
935
|
|
|
|
|
|
|
g_build_filenamev => '2.8', |
936
|
|
|
|
|
|
|
g_access => '2.8', |
937
|
|
|
|
|
|
|
G_GNUC_NULL_TERMINATED => '2.8', |
938
|
|
|
|
|
|
|
|
939
|
|
|
|
|
|
|
glib_check_version => '2.6', |
940
|
|
|
|
|
|
|
g_uri_list_extract_uris => '2.6', |
941
|
|
|
|
|
|
|
g_unlink => '2.6', |
942
|
|
|
|
|
|
|
g_strv_length => '2.6', |
943
|
|
|
|
|
|
|
g_stat => '2.6', |
944
|
|
|
|
|
|
|
g_rmdir => '2.6', |
945
|
|
|
|
|
|
|
g_rename => '2.6', |
946
|
|
|
|
|
|
|
g_remove => '2.6', |
947
|
|
|
|
|
|
|
g_option_group_set_translation_domain => '2.6', |
948
|
|
|
|
|
|
|
g_option_group_set_translate_func => '2.6', |
949
|
|
|
|
|
|
|
g_option_group_set_parse_hooks => '2.6', |
950
|
|
|
|
|
|
|
g_option_group_set_error_hook => '2.6', |
951
|
|
|
|
|
|
|
g_option_group_new => '2.6', |
952
|
|
|
|
|
|
|
g_option_group_free => '2.6', |
953
|
|
|
|
|
|
|
g_option_group_add_entries => '2.6', |
954
|
|
|
|
|
|
|
g_option_context_set_main_group => '2.6', |
955
|
|
|
|
|
|
|
g_option_context_set_ignore_unknown_options => '2.6', |
956
|
|
|
|
|
|
|
g_option_context_set_help_enabled => '2.6', |
957
|
|
|
|
|
|
|
g_option_context_parse => '2.6', |
958
|
|
|
|
|
|
|
g_option_context_new => '2.6', |
959
|
|
|
|
|
|
|
g_option_context_get_main_group => '2.6', |
960
|
|
|
|
|
|
|
g_option_context_get_ignore_unknown_options => '2.6', |
961
|
|
|
|
|
|
|
g_option_context_get_help_enabled => '2.6', |
962
|
|
|
|
|
|
|
g_option_context_free => '2.6', |
963
|
|
|
|
|
|
|
g_option_context_add_main_entries => '2.6', |
964
|
|
|
|
|
|
|
g_option_context_add_group => '2.6', |
965
|
|
|
|
|
|
|
g_open => '2.6', |
966
|
|
|
|
|
|
|
g_mkdir => '2.6', |
967
|
|
|
|
|
|
|
g_lstat => '2.6', |
968
|
|
|
|
|
|
|
g_log_set_default_handler => '2.6', |
969
|
|
|
|
|
|
|
g_key_file_to_data => '2.6', |
970
|
|
|
|
|
|
|
g_key_file_set_value => '2.6', |
971
|
|
|
|
|
|
|
g_key_file_set_string_list => '2.6', |
972
|
|
|
|
|
|
|
g_key_file_set_string => '2.6', |
973
|
|
|
|
|
|
|
g_key_file_set_locale_string_list => '2.6', |
974
|
|
|
|
|
|
|
g_key_file_set_locale_string => '2.6', |
975
|
|
|
|
|
|
|
g_key_file_set_list_separator => '2.6', |
976
|
|
|
|
|
|
|
g_key_file_set_integer_list => '2.6', |
977
|
|
|
|
|
|
|
g_key_file_set_integer => '2.6', |
978
|
|
|
|
|
|
|
g_key_file_set_comment => '2.6', |
979
|
|
|
|
|
|
|
g_key_file_set_boolean_list => '2.6', |
980
|
|
|
|
|
|
|
g_key_file_set_boolean => '2.6', |
981
|
|
|
|
|
|
|
g_key_file_remove_key => '2.6', |
982
|
|
|
|
|
|
|
g_key_file_remove_group => '2.6', |
983
|
|
|
|
|
|
|
g_key_file_remove_comment => '2.6', |
984
|
|
|
|
|
|
|
g_key_file_new => '2.6', |
985
|
|
|
|
|
|
|
g_key_file_load_from_file => '2.6', |
986
|
|
|
|
|
|
|
g_key_file_load_from_data_dirs => '2.6', |
987
|
|
|
|
|
|
|
g_key_file_load_from_data => '2.6', |
988
|
|
|
|
|
|
|
g_key_file_has_key => '2.6', |
989
|
|
|
|
|
|
|
g_key_file_has_group => '2.6', |
990
|
|
|
|
|
|
|
g_key_file_get_value => '2.6', |
991
|
|
|
|
|
|
|
g_key_file_get_string_list => '2.6', |
992
|
|
|
|
|
|
|
g_key_file_get_string => '2.6', |
993
|
|
|
|
|
|
|
g_key_file_get_start_group => '2.6', |
994
|
|
|
|
|
|
|
g_key_file_get_locale_string_list => '2.6', |
995
|
|
|
|
|
|
|
g_key_file_get_locale_string => '2.6', |
996
|
|
|
|
|
|
|
g_key_file_get_keys => '2.6', |
997
|
|
|
|
|
|
|
g_key_file_get_integer_list => '2.6', |
998
|
|
|
|
|
|
|
g_key_file_get_integer => '2.6', |
999
|
|
|
|
|
|
|
g_key_file_get_groups => '2.6', |
1000
|
|
|
|
|
|
|
g_key_file_get_comment => '2.6', |
1001
|
|
|
|
|
|
|
g_key_file_get_boolean_list => '2.6', |
1002
|
|
|
|
|
|
|
g_key_file_get_boolean => '2.6', |
1003
|
|
|
|
|
|
|
g_key_file_free => '2.6', |
1004
|
|
|
|
|
|
|
g_get_user_data_dir => '2.6', |
1005
|
|
|
|
|
|
|
g_get_user_config_dir => '2.6', |
1006
|
|
|
|
|
|
|
g_get_user_cache_dir => '2.6', |
1007
|
|
|
|
|
|
|
g_get_system_data_dirs => '2.6', |
1008
|
|
|
|
|
|
|
g_get_system_config_dirs => '2.6', |
1009
|
|
|
|
|
|
|
g_get_language_names => '2.6', |
1010
|
|
|
|
|
|
|
g_get_filename_charsets => '2.6', |
1011
|
|
|
|
|
|
|
g_freopen => '2.6', |
1012
|
|
|
|
|
|
|
g_fopen => '2.6', |
1013
|
|
|
|
|
|
|
g_filename_display_name => '2.6', |
1014
|
|
|
|
|
|
|
g_filename_display_basename => '2.6', |
1015
|
|
|
|
|
|
|
g_debug => '2.6', |
1016
|
|
|
|
|
|
|
g_date_get_iso8601_week_of_year => '2.6', |
1017
|
|
|
|
|
|
|
G_WIN32_IS_NT_BASED => '2.6', |
1018
|
|
|
|
|
|
|
G_WIN32_HAVE_WIDECHAR_API => '2.6', |
1019
|
|
|
|
|
|
|
G_OPTION_REMAINING => '2.6', |
1020
|
|
|
|
|
|
|
G_IS_DIR_SEPARATOR => '2.6', |
1021
|
|
|
|
|
|
|
G_GSSIZE_MODIFIER => '2.6', |
1022
|
|
|
|
|
|
|
G_GSSIZE_FORMAT => '2.6', |
1023
|
|
|
|
|
|
|
G_GSIZE_MODIFIER => '2.6', |
1024
|
|
|
|
|
|
|
G_GSIZE_FORMAT => '2.6', |
1025
|
|
|
|
|
|
|
G_GNUC_MALLOC => '2.6', |
1026
|
|
|
|
|
|
|
G_GNUC_INTERNAL => '2.6', |
1027
|
|
|
|
|
|
|
|
1028
|
|
|
|
|
|
|
g_vasprintf => '2.4', |
1029
|
|
|
|
|
|
|
g_unsetenv => '2.4', |
1030
|
|
|
|
|
|
|
g_unichar_get_mirror_char => '2.4', |
1031
|
|
|
|
|
|
|
g_timer_continue => '2.4', |
1032
|
|
|
|
|
|
|
g_strsplit_set => '2.4', |
1033
|
|
|
|
|
|
|
g_strip_context => '2.4', |
1034
|
|
|
|
|
|
|
g_string_chunk_insert_len => '2.4', |
1035
|
|
|
|
|
|
|
g_setenv => '2.4', |
1036
|
|
|
|
|
|
|
g_rand_set_seed_array => '2.4', |
1037
|
|
|
|
|
|
|
g_rand_new_with_seed_array => '2.4', |
1038
|
|
|
|
|
|
|
g_rand_copy => '2.4', |
1039
|
|
|
|
|
|
|
g_queue_unlink => '2.4', |
1040
|
|
|
|
|
|
|
g_queue_sort => '2.4', |
1041
|
|
|
|
|
|
|
g_queue_reverse => '2.4', |
1042
|
|
|
|
|
|
|
g_queue_remove_all => '2.4', |
1043
|
|
|
|
|
|
|
g_queue_remove => '2.4', |
1044
|
|
|
|
|
|
|
g_queue_push_nth_link => '2.4', |
1045
|
|
|
|
|
|
|
g_queue_push_nth => '2.4', |
1046
|
|
|
|
|
|
|
g_queue_pop_nth_link => '2.4', |
1047
|
|
|
|
|
|
|
g_queue_pop_nth => '2.4', |
1048
|
|
|
|
|
|
|
g_queue_peek_tail_link => '2.4', |
1049
|
|
|
|
|
|
|
g_queue_peek_nth_link => '2.4', |
1050
|
|
|
|
|
|
|
g_queue_peek_nth => '2.4', |
1051
|
|
|
|
|
|
|
g_queue_peek_head_link => '2.4', |
1052
|
|
|
|
|
|
|
g_queue_link_index => '2.4', |
1053
|
|
|
|
|
|
|
g_queue_insert_sorted => '2.4', |
1054
|
|
|
|
|
|
|
g_queue_insert_before => '2.4', |
1055
|
|
|
|
|
|
|
g_queue_insert_after => '2.4', |
1056
|
|
|
|
|
|
|
g_queue_index => '2.4', |
1057
|
|
|
|
|
|
|
g_queue_get_length => '2.4', |
1058
|
|
|
|
|
|
|
g_queue_foreach => '2.4', |
1059
|
|
|
|
|
|
|
g_queue_find_custom => '2.4', |
1060
|
|
|
|
|
|
|
g_queue_find => '2.4', |
1061
|
|
|
|
|
|
|
g_queue_delete_link => '2.4', |
1062
|
|
|
|
|
|
|
g_queue_copy => '2.4', |
1063
|
|
|
|
|
|
|
g_ptr_array_remove_range => '2.4', |
1064
|
|
|
|
|
|
|
g_ptr_array_foreach => '2.4', |
1065
|
|
|
|
|
|
|
g_once => '2.4', |
1066
|
|
|
|
|
|
|
g_node_copy_deep => '2.4', |
1067
|
|
|
|
|
|
|
g_markup_vprintf_escaped => '2.4', |
1068
|
|
|
|
|
|
|
g_markup_printf_escaped => '2.4', |
1069
|
|
|
|
|
|
|
g_hash_table_find => '2.4', |
1070
|
|
|
|
|
|
|
g_file_read_link => '2.4', |
1071
|
|
|
|
|
|
|
g_completion_complete_utf8 => '2.4', |
1072
|
|
|
|
|
|
|
g_child_watch_source_new => '2.4', |
1073
|
|
|
|
|
|
|
g_child_watch_add_full => '2.4', |
1074
|
|
|
|
|
|
|
g_child_watch_add => '2.4', |
1075
|
|
|
|
|
|
|
g_byte_array_remove_range => '2.4', |
1076
|
|
|
|
|
|
|
g_atomic_pointer_set => '2.4', |
1077
|
|
|
|
|
|
|
g_atomic_pointer_get => '2.4', |
1078
|
|
|
|
|
|
|
g_atomic_pointer_compare_and_exchange => '2.4', |
1079
|
|
|
|
|
|
|
g_atomic_int_set => '2.4', |
1080
|
|
|
|
|
|
|
g_atomic_int_inc => '2.4', |
1081
|
|
|
|
|
|
|
g_atomic_int_get => '2.4', |
1082
|
|
|
|
|
|
|
g_atomic_int_exchange_and_add => '2.4', |
1083
|
|
|
|
|
|
|
g_atomic_int_dec_and_test => '2.4', |
1084
|
|
|
|
|
|
|
g_atomic_int_compare_and_exchange => '2.4', |
1085
|
|
|
|
|
|
|
g_atomic_int_add => '2.4', |
1086
|
|
|
|
|
|
|
g_array_remove_range => '2.4', |
1087
|
|
|
|
|
|
|
Q_ => '2.4', |
1088
|
|
|
|
|
|
|
N_ => '2.4', |
1089
|
|
|
|
|
|
|
G_STRFUNC => '2.4', |
1090
|
|
|
|
|
|
|
G_ONCE_INIT => '2.4', |
1091
|
|
|
|
|
|
|
G_MININT8 => '2.4', |
1092
|
|
|
|
|
|
|
G_MININT32 => '2.4', |
1093
|
|
|
|
|
|
|
G_MININT16 => '2.4', |
1094
|
|
|
|
|
|
|
G_MAXUINT8 => '2.4', |
1095
|
|
|
|
|
|
|
G_MAXUINT32 => '2.4', |
1096
|
|
|
|
|
|
|
G_MAXUINT16 => '2.4', |
1097
|
|
|
|
|
|
|
G_MAXSIZE => '2.4', |
1098
|
|
|
|
|
|
|
G_MAXINT8 => '2.4', |
1099
|
|
|
|
|
|
|
G_MAXINT32 => '2.4', |
1100
|
|
|
|
|
|
|
G_MAXINT16 => '2.4', |
1101
|
|
|
|
|
|
|
G_GINT64_MODIFIER => '2.4', |
1102
|
|
|
|
|
|
|
G_GINT32_MODIFIER => '2.4', |
1103
|
|
|
|
|
|
|
G_GINT16_MODIFIER => '2.4', |
1104
|
|
|
|
|
|
|
GOnceStatus => '2.4', |
1105
|
|
|
|
|
|
|
GOnce => '2.4', |
1106
|
|
|
|
|
|
|
GCopyFunc => '2.4', |
1107
|
|
|
|
|
|
|
|
1108
|
|
|
|
|
|
|
g_vsprintf => '2.2', |
1109
|
|
|
|
|
|
|
g_vprintf => '2.2', |
1110
|
|
|
|
|
|
|
g_vfprintf => '2.2', |
1111
|
|
|
|
|
|
|
g_utf8_strreverse => '2.2', |
1112
|
|
|
|
|
|
|
g_str_has_suffix => '2.2', |
1113
|
|
|
|
|
|
|
g_str_has_prefix => '2.2', |
1114
|
|
|
|
|
|
|
g_sprintf => '2.2', |
1115
|
|
|
|
|
|
|
g_set_application_name => '2.2', |
1116
|
|
|
|
|
|
|
g_printf => '2.2', |
1117
|
|
|
|
|
|
|
g_markup_parse_context_get_element => '2.2', |
1118
|
|
|
|
|
|
|
g_get_application_name => '2.2', |
1119
|
|
|
|
|
|
|
g_fprintf => '2.2', |
1120
|
|
|
|
|
|
|
g_ascii_strtoull => '2.2', |
1121
|
|
|
|
|
|
|
G_UNLIKELY => '2.2', |
1122
|
|
|
|
|
|
|
G_LIKELY => '2.2', |
1123
|
|
|
|
|
|
|
G_GNUC_DEPRECATED => '2.2', |
1124
|
|
|
|
|
|
|
|
1125
|
|
|
|
|
|
|
gushort => '2.0', |
1126
|
|
|
|
|
|
|
gunichar2 => '2.0', |
1127
|
|
|
|
|
|
|
gunichar => '2.0', |
1128
|
|
|
|
|
|
|
gulong => '2.0', |
1129
|
|
|
|
|
|
|
guint8 => '2.0', |
1130
|
|
|
|
|
|
|
guint64 => '2.0', |
1131
|
|
|
|
|
|
|
guint32 => '2.0', |
1132
|
|
|
|
|
|
|
guint16 => '2.0', |
1133
|
|
|
|
|
|
|
guint => '2.0', |
1134
|
|
|
|
|
|
|
guchar => '2.0', |
1135
|
|
|
|
|
|
|
gssize => '2.0', |
1136
|
|
|
|
|
|
|
gsize => '2.0', |
1137
|
|
|
|
|
|
|
gshort => '2.0', |
1138
|
|
|
|
|
|
|
gpointer => '2.0', |
1139
|
|
|
|
|
|
|
glong => '2.0', |
1140
|
|
|
|
|
|
|
glib_minor_version => '2.0', |
1141
|
|
|
|
|
|
|
glib_micro_version => '2.0', |
1142
|
|
|
|
|
|
|
glib_mem_profiler_table => '2.0', |
1143
|
|
|
|
|
|
|
glib_major_version => '2.0', |
1144
|
|
|
|
|
|
|
glib_interface_age => '2.0', |
1145
|
|
|
|
|
|
|
glib_binary_age => '2.0', |
1146
|
|
|
|
|
|
|
gint8 => '2.0', |
1147
|
|
|
|
|
|
|
gint64 => '2.0', |
1148
|
|
|
|
|
|
|
gint32 => '2.0', |
1149
|
|
|
|
|
|
|
gint16 => '2.0', |
1150
|
|
|
|
|
|
|
gint => '2.0', |
1151
|
|
|
|
|
|
|
gfloat => '2.0', |
1152
|
|
|
|
|
|
|
gdouble => '2.0', |
1153
|
|
|
|
|
|
|
gconstpointer => '2.0', |
1154
|
|
|
|
|
|
|
gchar => '2.0', |
1155
|
|
|
|
|
|
|
gboolean => '2.0', |
1156
|
|
|
|
|
|
|
g_win32_getlocale => '2.0', |
1157
|
|
|
|
|
|
|
g_win32_get_windows_version => '2.0', |
1158
|
|
|
|
|
|
|
g_win32_get_package_installation_subdirectory => '2.0', |
1159
|
|
|
|
|
|
|
g_win32_get_package_installation_directory => '2.0', |
1160
|
|
|
|
|
|
|
g_win32_error_message => '2.0', |
1161
|
|
|
|
|
|
|
g_warning => '2.0', |
1162
|
|
|
|
|
|
|
g_vsnprintf => '2.0', |
1163
|
|
|
|
|
|
|
g_variant_type_value => '2.0', |
1164
|
|
|
|
|
|
|
g_variant_type_string_is_valid => '2.0', |
1165
|
|
|
|
|
|
|
g_variant_type_peek_string => '2.0', |
1166
|
|
|
|
|
|
|
g_variant_type_next => '2.0', |
1167
|
|
|
|
|
|
|
g_variant_type_new_tuple => '2.0', |
1168
|
|
|
|
|
|
|
g_variant_type_new_maybe => '2.0', |
1169
|
|
|
|
|
|
|
g_variant_type_new_dict_entry => '2.0', |
1170
|
|
|
|
|
|
|
g_variant_type_new_array => '2.0', |
1171
|
|
|
|
|
|
|
g_variant_type_n_items => '2.0', |
1172
|
|
|
|
|
|
|
g_variant_type_key => '2.0', |
1173
|
|
|
|
|
|
|
g_variant_type_is_variant => '2.0', |
1174
|
|
|
|
|
|
|
g_variant_type_is_tuple => '2.0', |
1175
|
|
|
|
|
|
|
g_variant_type_is_subtype_of => '2.0', |
1176
|
|
|
|
|
|
|
g_variant_type_is_maybe => '2.0', |
1177
|
|
|
|
|
|
|
g_variant_type_is_dict_entry => '2.0', |
1178
|
|
|
|
|
|
|
g_variant_type_is_definite => '2.0', |
1179
|
|
|
|
|
|
|
g_variant_type_is_container => '2.0', |
1180
|
|
|
|
|
|
|
g_variant_type_is_basic => '2.0', |
1181
|
|
|
|
|
|
|
g_variant_type_is_array => '2.0', |
1182
|
|
|
|
|
|
|
g_variant_type_hash => '2.0', |
1183
|
|
|
|
|
|
|
g_variant_type_get_string_length => '2.0', |
1184
|
|
|
|
|
|
|
g_variant_type_free => '2.0', |
1185
|
|
|
|
|
|
|
g_variant_type_first => '2.0', |
1186
|
|
|
|
|
|
|
g_variant_type_equal => '2.0', |
1187
|
|
|
|
|
|
|
g_variant_type_element => '2.0', |
1188
|
|
|
|
|
|
|
g_variant_type_dup_string => '2.0', |
1189
|
|
|
|
|
|
|
g_variant_type_copy => '2.0', |
1190
|
|
|
|
|
|
|
g_variant_take_ref => '2.0', |
1191
|
|
|
|
|
|
|
g_variant_parse => '2.0', |
1192
|
|
|
|
|
|
|
g_variant_new_parsed_va => '2.0', |
1193
|
|
|
|
|
|
|
g_variant_new_parsed => '2.0', |
1194
|
|
|
|
|
|
|
g_utf8_validate => '2.0', |
1195
|
|
|
|
|
|
|
g_utf8_to_utf16 => '2.0', |
1196
|
|
|
|
|
|
|
g_utf8_to_ucs4_fast => '2.0', |
1197
|
|
|
|
|
|
|
g_utf8_to_ucs4 => '2.0', |
1198
|
|
|
|
|
|
|
g_utf8_strup => '2.0', |
1199
|
|
|
|
|
|
|
g_utf8_strrchr => '2.0', |
1200
|
|
|
|
|
|
|
g_utf8_strncpy => '2.0', |
1201
|
|
|
|
|
|
|
g_utf8_strlen => '2.0', |
1202
|
|
|
|
|
|
|
g_utf8_strdown => '2.0', |
1203
|
|
|
|
|
|
|
g_utf8_strchr => '2.0', |
1204
|
|
|
|
|
|
|
g_utf8_prev_char => '2.0', |
1205
|
|
|
|
|
|
|
g_utf8_pointer_to_offset => '2.0', |
1206
|
|
|
|
|
|
|
g_utf8_offset_to_pointer => '2.0', |
1207
|
|
|
|
|
|
|
g_utf8_normalize => '2.0', |
1208
|
|
|
|
|
|
|
g_utf8_next_char => '2.0', |
1209
|
|
|
|
|
|
|
g_utf8_get_char_validated => '2.0', |
1210
|
|
|
|
|
|
|
g_utf8_get_char => '2.0', |
1211
|
|
|
|
|
|
|
g_utf8_find_prev_char => '2.0', |
1212
|
|
|
|
|
|
|
g_utf8_find_next_char => '2.0', |
1213
|
|
|
|
|
|
|
g_utf8_collate_key => '2.0', |
1214
|
|
|
|
|
|
|
g_utf8_collate => '2.0', |
1215
|
|
|
|
|
|
|
g_utf8_casefold => '2.0', |
1216
|
|
|
|
|
|
|
g_utf16_to_utf8 => '2.0', |
1217
|
|
|
|
|
|
|
g_utf16_to_ucs4 => '2.0', |
1218
|
|
|
|
|
|
|
g_usleep => '2.0', |
1219
|
|
|
|
|
|
|
g_unicode_canonical_ordering => '2.0', |
1220
|
|
|
|
|
|
|
g_unicode_canonical_decomposition => '2.0', |
1221
|
|
|
|
|
|
|
g_unichar_xdigit_value => '2.0', |
1222
|
|
|
|
|
|
|
g_unichar_validate => '2.0', |
1223
|
|
|
|
|
|
|
g_unichar_type => '2.0', |
1224
|
|
|
|
|
|
|
g_unichar_toupper => '2.0', |
1225
|
|
|
|
|
|
|
g_unichar_totitle => '2.0', |
1226
|
|
|
|
|
|
|
g_unichar_tolower => '2.0', |
1227
|
|
|
|
|
|
|
g_unichar_to_utf8 => '2.0', |
1228
|
|
|
|
|
|
|
g_unichar_isxdigit => '2.0', |
1229
|
|
|
|
|
|
|
g_unichar_iswide => '2.0', |
1230
|
|
|
|
|
|
|
g_unichar_isupper => '2.0', |
1231
|
|
|
|
|
|
|
g_unichar_istitle => '2.0', |
1232
|
|
|
|
|
|
|
g_unichar_isspace => '2.0', |
1233
|
|
|
|
|
|
|
g_unichar_ispunct => '2.0', |
1234
|
|
|
|
|
|
|
g_unichar_isprint => '2.0', |
1235
|
|
|
|
|
|
|
g_unichar_islower => '2.0', |
1236
|
|
|
|
|
|
|
g_unichar_isgraph => '2.0', |
1237
|
|
|
|
|
|
|
g_unichar_isdigit => '2.0', |
1238
|
|
|
|
|
|
|
g_unichar_isdefined => '2.0', |
1239
|
|
|
|
|
|
|
g_unichar_iscntrl => '2.0', |
1240
|
|
|
|
|
|
|
g_unichar_isalpha => '2.0', |
1241
|
|
|
|
|
|
|
g_unichar_isalnum => '2.0', |
1242
|
|
|
|
|
|
|
g_unichar_digit_value => '2.0', |
1243
|
|
|
|
|
|
|
g_unichar_break_type => '2.0', |
1244
|
|
|
|
|
|
|
g_ucs4_to_utf8 => '2.0', |
1245
|
|
|
|
|
|
|
g_ucs4_to_utf16 => '2.0', |
1246
|
|
|
|
|
|
|
g_tuples_index => '2.0', |
1247
|
|
|
|
|
|
|
g_tuples_destroy => '2.0', |
1248
|
|
|
|
|
|
|
g_try_realloc => '2.0', |
1249
|
|
|
|
|
|
|
g_try_malloc => '2.0', |
1250
|
|
|
|
|
|
|
g_tree_traverse => '2.0', |
1251
|
|
|
|
|
|
|
g_tree_steal => '2.0', |
1252
|
|
|
|
|
|
|
g_tree_search => '2.0', |
1253
|
|
|
|
|
|
|
g_tree_replace => '2.0', |
1254
|
|
|
|
|
|
|
g_tree_remove => '2.0', |
1255
|
|
|
|
|
|
|
g_tree_nnodes => '2.0', |
1256
|
|
|
|
|
|
|
g_tree_new_with_data => '2.0', |
1257
|
|
|
|
|
|
|
g_tree_new_full => '2.0', |
1258
|
|
|
|
|
|
|
g_tree_new => '2.0', |
1259
|
|
|
|
|
|
|
g_tree_lookup_extended => '2.0', |
1260
|
|
|
|
|
|
|
g_tree_lookup => '2.0', |
1261
|
|
|
|
|
|
|
g_tree_insert => '2.0', |
1262
|
|
|
|
|
|
|
g_tree_height => '2.0', |
1263
|
|
|
|
|
|
|
g_tree_foreach => '2.0', |
1264
|
|
|
|
|
|
|
g_tree_destroy => '2.0', |
1265
|
|
|
|
|
|
|
g_trash_stack_push => '2.0', |
1266
|
|
|
|
|
|
|
g_trash_stack_pop => '2.0', |
1267
|
|
|
|
|
|
|
g_trash_stack_peek => '2.0', |
1268
|
|
|
|
|
|
|
g_trash_stack_height => '2.0', |
1269
|
|
|
|
|
|
|
g_timer_stop => '2.0', |
1270
|
|
|
|
|
|
|
g_timer_start => '2.0', |
1271
|
|
|
|
|
|
|
g_timer_reset => '2.0', |
1272
|
|
|
|
|
|
|
g_timer_new => '2.0', |
1273
|
|
|
|
|
|
|
g_timer_elapsed => '2.0', |
1274
|
|
|
|
|
|
|
g_timer_destroy => '2.0', |
1275
|
|
|
|
|
|
|
g_timeout_source_new => '2.0', |
1276
|
|
|
|
|
|
|
g_timeout_add_full => '2.0', |
1277
|
|
|
|
|
|
|
g_timeout_add => '2.0', |
1278
|
|
|
|
|
|
|
g_time_val_add => '2.0', |
1279
|
|
|
|
|
|
|
g_thread_yield => '2.0', |
1280
|
|
|
|
|
|
|
g_thread_supported => '2.0', |
1281
|
|
|
|
|
|
|
g_thread_set_priority => '2.0', |
1282
|
|
|
|
|
|
|
g_thread_self => '2.0', |
1283
|
|
|
|
|
|
|
g_thread_pool_unprocessed => '2.0', |
1284
|
|
|
|
|
|
|
g_thread_pool_stop_unused_threads => '2.0', |
1285
|
|
|
|
|
|
|
g_thread_pool_set_max_unused_threads => '2.0', |
1286
|
|
|
|
|
|
|
g_thread_pool_set_max_threads => '2.0', |
1287
|
|
|
|
|
|
|
g_thread_pool_push => '2.0', |
1288
|
|
|
|
|
|
|
g_thread_pool_new => '2.0', |
1289
|
|
|
|
|
|
|
g_thread_pool_get_num_unused_threads => '2.0', |
1290
|
|
|
|
|
|
|
g_thread_pool_get_num_threads => '2.0', |
1291
|
|
|
|
|
|
|
g_thread_pool_get_max_unused_threads => '2.0', |
1292
|
|
|
|
|
|
|
g_thread_pool_get_max_threads => '2.0', |
1293
|
|
|
|
|
|
|
g_thread_pool_free => '2.0', |
1294
|
|
|
|
|
|
|
g_thread_join => '2.0', |
1295
|
|
|
|
|
|
|
g_thread_init => '2.0', |
1296
|
|
|
|
|
|
|
g_thread_exit => '2.0', |
1297
|
|
|
|
|
|
|
g_thread_create_full => '2.0', |
1298
|
|
|
|
|
|
|
g_thread_create => '2.0', |
1299
|
|
|
|
|
|
|
g_test_verbose => '2.0', |
1300
|
|
|
|
|
|
|
g_test_undefined => '2.0', |
1301
|
|
|
|
|
|
|
g_test_thorough => '2.0', |
1302
|
|
|
|
|
|
|
g_test_slow => '2.0', |
1303
|
|
|
|
|
|
|
g_test_quiet => '2.0', |
1304
|
|
|
|
|
|
|
g_test_quick => '2.0', |
1305
|
|
|
|
|
|
|
g_test_perf => '2.0', |
1306
|
|
|
|
|
|
|
g_strup => '2.0', |
1307
|
|
|
|
|
|
|
g_strtod => '2.0', |
1308
|
|
|
|
|
|
|
g_strstrip => '2.0', |
1309
|
|
|
|
|
|
|
g_strstr_len => '2.0', |
1310
|
|
|
|
|
|
|
g_strsplit => '2.0', |
1311
|
|
|
|
|
|
|
g_strsignal => '2.0', |
1312
|
|
|
|
|
|
|
g_strrstr_len => '2.0', |
1313
|
|
|
|
|
|
|
g_strrstr => '2.0', |
1314
|
|
|
|
|
|
|
g_strreverse => '2.0', |
1315
|
|
|
|
|
|
|
g_strnfill => '2.0', |
1316
|
|
|
|
|
|
|
g_strndup => '2.0', |
1317
|
|
|
|
|
|
|
g_strncasecmp => '2.0', |
1318
|
|
|
|
|
|
|
g_strlcpy => '2.0', |
1319
|
|
|
|
|
|
|
g_strlcat => '2.0', |
1320
|
|
|
|
|
|
|
g_strjoinv => '2.0', |
1321
|
|
|
|
|
|
|
g_strjoin => '2.0', |
1322
|
|
|
|
|
|
|
g_string_up => '2.0', |
1323
|
|
|
|
|
|
|
g_string_truncate => '2.0', |
1324
|
|
|
|
|
|
|
g_string_sprintfa => '2.0', |
1325
|
|
|
|
|
|
|
g_string_sprintf => '2.0', |
1326
|
|
|
|
|
|
|
g_string_sized_new => '2.0', |
1327
|
|
|
|
|
|
|
g_string_set_size => '2.0', |
1328
|
|
|
|
|
|
|
g_string_printf => '2.0', |
1329
|
|
|
|
|
|
|
g_string_prepend_unichar => '2.0', |
1330
|
|
|
|
|
|
|
g_string_prepend_len => '2.0', |
1331
|
|
|
|
|
|
|
g_string_prepend_c => '2.0', |
1332
|
|
|
|
|
|
|
g_string_prepend => '2.0', |
1333
|
|
|
|
|
|
|
g_string_new_len => '2.0', |
1334
|
|
|
|
|
|
|
g_string_new => '2.0', |
1335
|
|
|
|
|
|
|
g_string_insert_unichar => '2.0', |
1336
|
|
|
|
|
|
|
g_string_insert_len => '2.0', |
1337
|
|
|
|
|
|
|
g_string_insert_c => '2.0', |
1338
|
|
|
|
|
|
|
g_string_insert => '2.0', |
1339
|
|
|
|
|
|
|
g_string_hash => '2.0', |
1340
|
|
|
|
|
|
|
g_string_free => '2.0', |
1341
|
|
|
|
|
|
|
g_string_erase => '2.0', |
1342
|
|
|
|
|
|
|
g_string_equal => '2.0', |
1343
|
|
|
|
|
|
|
g_string_down => '2.0', |
1344
|
|
|
|
|
|
|
g_string_chunk_new => '2.0', |
1345
|
|
|
|
|
|
|
g_string_chunk_insert_const => '2.0', |
1346
|
|
|
|
|
|
|
g_string_chunk_insert => '2.0', |
1347
|
|
|
|
|
|
|
g_string_chunk_free => '2.0', |
1348
|
|
|
|
|
|
|
g_string_assign => '2.0', |
1349
|
|
|
|
|
|
|
g_string_ascii_up => '2.0', |
1350
|
|
|
|
|
|
|
g_string_ascii_down => '2.0', |
1351
|
|
|
|
|
|
|
g_string_append_unichar => '2.0', |
1352
|
|
|
|
|
|
|
g_string_append_printf => '2.0', |
1353
|
|
|
|
|
|
|
g_string_append_len => '2.0', |
1354
|
|
|
|
|
|
|
g_string_append_c => '2.0', |
1355
|
|
|
|
|
|
|
g_string_append => '2.0', |
1356
|
|
|
|
|
|
|
g_strfreev => '2.0', |
1357
|
|
|
|
|
|
|
g_strescape => '2.0', |
1358
|
|
|
|
|
|
|
g_strerror => '2.0', |
1359
|
|
|
|
|
|
|
g_strdupv => '2.0', |
1360
|
|
|
|
|
|
|
g_strdup_vprintf => '2.0', |
1361
|
|
|
|
|
|
|
g_strdup_printf => '2.0', |
1362
|
|
|
|
|
|
|
g_strdup => '2.0', |
1363
|
|
|
|
|
|
|
g_strdown => '2.0', |
1364
|
|
|
|
|
|
|
g_strdelimit => '2.0', |
1365
|
|
|
|
|
|
|
g_strconcat => '2.0', |
1366
|
|
|
|
|
|
|
g_strcompress => '2.0', |
1367
|
|
|
|
|
|
|
g_strchug => '2.0', |
1368
|
|
|
|
|
|
|
g_strchomp => '2.0', |
1369
|
|
|
|
|
|
|
g_strcasecmp => '2.0', |
1370
|
|
|
|
|
|
|
g_strcanon => '2.0', |
1371
|
|
|
|
|
|
|
g_str_hash => '2.0', |
1372
|
|
|
|
|
|
|
g_str_equal => '2.0', |
1373
|
|
|
|
|
|
|
g_stpcpy => '2.0', |
1374
|
|
|
|
|
|
|
g_static_rw_lock_writer_unlock => '2.0', |
1375
|
|
|
|
|
|
|
g_static_rw_lock_writer_trylock => '2.0', |
1376
|
|
|
|
|
|
|
g_static_rw_lock_writer_lock => '2.0', |
1377
|
|
|
|
|
|
|
g_static_rw_lock_reader_unlock => '2.0', |
1378
|
|
|
|
|
|
|
g_static_rw_lock_reader_trylock => '2.0', |
1379
|
|
|
|
|
|
|
g_static_rw_lock_reader_lock => '2.0', |
1380
|
|
|
|
|
|
|
g_static_rw_lock_init => '2.0', |
1381
|
|
|
|
|
|
|
g_static_rw_lock_free => '2.0', |
1382
|
|
|
|
|
|
|
g_static_rec_mutex_unlock_full => '2.0', |
1383
|
|
|
|
|
|
|
g_static_rec_mutex_unlock => '2.0', |
1384
|
|
|
|
|
|
|
g_static_rec_mutex_trylock => '2.0', |
1385
|
|
|
|
|
|
|
g_static_rec_mutex_lock_full => '2.0', |
1386
|
|
|
|
|
|
|
g_static_rec_mutex_lock => '2.0', |
1387
|
|
|
|
|
|
|
g_static_rec_mutex_init => '2.0', |
1388
|
|
|
|
|
|
|
g_static_rec_mutex_free => '2.0', |
1389
|
|
|
|
|
|
|
g_static_private_set => '2.0', |
1390
|
|
|
|
|
|
|
g_static_private_init => '2.0', |
1391
|
|
|
|
|
|
|
g_static_private_get => '2.0', |
1392
|
|
|
|
|
|
|
g_static_private_free => '2.0', |
1393
|
|
|
|
|
|
|
g_static_mutex_unlock => '2.0', |
1394
|
|
|
|
|
|
|
g_static_mutex_trylock => '2.0', |
1395
|
|
|
|
|
|
|
g_static_mutex_lock => '2.0', |
1396
|
|
|
|
|
|
|
g_static_mutex_init => '2.0', |
1397
|
|
|
|
|
|
|
g_static_mutex_get_mutex => '2.0', |
1398
|
|
|
|
|
|
|
g_static_mutex_free => '2.0', |
1399
|
|
|
|
|
|
|
g_spawn_sync => '2.0', |
1400
|
|
|
|
|
|
|
g_spawn_command_line_sync => '2.0', |
1401
|
|
|
|
|
|
|
g_spawn_command_line_async => '2.0', |
1402
|
|
|
|
|
|
|
g_spawn_close_pid => '2.0', |
1403
|
|
|
|
|
|
|
g_spawn_async_with_pipes => '2.0', |
1404
|
|
|
|
|
|
|
g_spawn_async => '2.0', |
1405
|
|
|
|
|
|
|
g_spaced_primes_closest => '2.0', |
1406
|
|
|
|
|
|
|
g_source_unref => '2.0', |
1407
|
|
|
|
|
|
|
g_source_set_priority => '2.0', |
1408
|
|
|
|
|
|
|
g_source_set_can_recurse => '2.0', |
1409
|
|
|
|
|
|
|
g_source_set_callback_indirect => '2.0', |
1410
|
|
|
|
|
|
|
g_source_set_callback => '2.0', |
1411
|
|
|
|
|
|
|
g_source_remove_poll => '2.0', |
1412
|
|
|
|
|
|
|
g_source_remove_by_user_data => '2.0', |
1413
|
|
|
|
|
|
|
g_source_remove_by_funcs_user_data => '2.0', |
1414
|
|
|
|
|
|
|
g_source_remove => '2.0', |
1415
|
|
|
|
|
|
|
g_source_ref => '2.0', |
1416
|
|
|
|
|
|
|
g_source_new => '2.0', |
1417
|
|
|
|
|
|
|
g_source_get_ready_time => '2.0', |
1418
|
|
|
|
|
|
|
g_source_get_priority => '2.0', |
1419
|
|
|
|
|
|
|
g_source_get_id => '2.0', |
1420
|
|
|
|
|
|
|
g_source_get_current_time => '2.0', |
1421
|
|
|
|
|
|
|
g_source_get_context => '2.0', |
1422
|
|
|
|
|
|
|
g_source_get_can_recurse => '2.0', |
1423
|
|
|
|
|
|
|
g_source_destroy => '2.0', |
1424
|
|
|
|
|
|
|
g_source_attach => '2.0', |
1425
|
|
|
|
|
|
|
g_source_add_poll => '2.0', |
1426
|
|
|
|
|
|
|
g_snprintf => '2.0', |
1427
|
|
|
|
|
|
|
g_slist_sort_with_data => '2.0', |
1428
|
|
|
|
|
|
|
g_slist_sort => '2.0', |
1429
|
|
|
|
|
|
|
g_slist_reverse => '2.0', |
1430
|
|
|
|
|
|
|
g_slist_remove_link => '2.0', |
1431
|
|
|
|
|
|
|
g_slist_remove_all => '2.0', |
1432
|
|
|
|
|
|
|
g_slist_remove => '2.0', |
1433
|
|
|
|
|
|
|
g_slist_prepend => '2.0', |
1434
|
|
|
|
|
|
|
g_slist_position => '2.0', |
1435
|
|
|
|
|
|
|
g_slist_nth_data => '2.0', |
1436
|
|
|
|
|
|
|
g_slist_nth => '2.0', |
1437
|
|
|
|
|
|
|
g_slist_next => '2.0', |
1438
|
|
|
|
|
|
|
g_slist_length => '2.0', |
1439
|
|
|
|
|
|
|
g_slist_last => '2.0', |
1440
|
|
|
|
|
|
|
g_slist_insert_sorted => '2.0', |
1441
|
|
|
|
|
|
|
g_slist_insert_before => '2.0', |
1442
|
|
|
|
|
|
|
g_slist_insert => '2.0', |
1443
|
|
|
|
|
|
|
g_slist_index => '2.0', |
1444
|
|
|
|
|
|
|
g_slist_free_1 => '2.0', |
1445
|
|
|
|
|
|
|
g_slist_free => '2.0', |
1446
|
|
|
|
|
|
|
g_slist_foreach => '2.0', |
1447
|
|
|
|
|
|
|
g_slist_find_custom => '2.0', |
1448
|
|
|
|
|
|
|
g_slist_find => '2.0', |
1449
|
|
|
|
|
|
|
g_slist_delete_link => '2.0', |
1450
|
|
|
|
|
|
|
g_slist_copy => '2.0', |
1451
|
|
|
|
|
|
|
g_slist_concat => '2.0', |
1452
|
|
|
|
|
|
|
g_slist_append => '2.0', |
1453
|
|
|
|
|
|
|
g_slist_alloc => '2.0', |
1454
|
|
|
|
|
|
|
g_shell_unquote => '2.0', |
1455
|
|
|
|
|
|
|
g_shell_quote => '2.0', |
1456
|
|
|
|
|
|
|
g_shell_parse_argv => '2.0', |
1457
|
|
|
|
|
|
|
g_set_printerr_handler => '2.0', |
1458
|
|
|
|
|
|
|
g_set_print_handler => '2.0', |
1459
|
|
|
|
|
|
|
g_set_prgname => '2.0', |
1460
|
|
|
|
|
|
|
g_set_error => '2.0', |
1461
|
|
|
|
|
|
|
g_scanner_warn => '2.0', |
1462
|
|
|
|
|
|
|
g_scanner_unexp_token => '2.0', |
1463
|
|
|
|
|
|
|
g_scanner_thaw_symbol_table => '2.0', |
1464
|
|
|
|
|
|
|
g_scanner_sync_file_offset => '2.0', |
1465
|
|
|
|
|
|
|
g_scanner_set_scope => '2.0', |
1466
|
|
|
|
|
|
|
g_scanner_scope_remove_symbol => '2.0', |
1467
|
|
|
|
|
|
|
g_scanner_scope_lookup_symbol => '2.0', |
1468
|
|
|
|
|
|
|
g_scanner_scope_foreach_symbol => '2.0', |
1469
|
|
|
|
|
|
|
g_scanner_scope_add_symbol => '2.0', |
1470
|
|
|
|
|
|
|
g_scanner_remove_symbol => '2.0', |
1471
|
|
|
|
|
|
|
g_scanner_peek_next_token => '2.0', |
1472
|
|
|
|
|
|
|
g_scanner_new => '2.0', |
1473
|
|
|
|
|
|
|
g_scanner_lookup_symbol => '2.0', |
1474
|
|
|
|
|
|
|
g_scanner_input_text => '2.0', |
1475
|
|
|
|
|
|
|
g_scanner_input_file => '2.0', |
1476
|
|
|
|
|
|
|
g_scanner_get_next_token => '2.0', |
1477
|
|
|
|
|
|
|
g_scanner_freeze_symbol_table => '2.0', |
1478
|
|
|
|
|
|
|
g_scanner_foreach_symbol => '2.0', |
1479
|
|
|
|
|
|
|
g_scanner_error => '2.0', |
1480
|
|
|
|
|
|
|
g_scanner_eof => '2.0', |
1481
|
|
|
|
|
|
|
g_scanner_destroy => '2.0', |
1482
|
|
|
|
|
|
|
g_scanner_cur_value => '2.0', |
1483
|
|
|
|
|
|
|
g_scanner_cur_token => '2.0', |
1484
|
|
|
|
|
|
|
g_scanner_cur_position => '2.0', |
1485
|
|
|
|
|
|
|
g_scanner_cur_line => '2.0', |
1486
|
|
|
|
|
|
|
g_scanner_add_symbol => '2.0', |
1487
|
|
|
|
|
|
|
g_rw_lock_clear => '2.0', |
1488
|
|
|
|
|
|
|
g_return_val_if_reached => '2.0', |
1489
|
|
|
|
|
|
|
g_return_val_if_fail => '2.0', |
1490
|
|
|
|
|
|
|
g_return_if_reached => '2.0', |
1491
|
|
|
|
|
|
|
g_return_if_fail => '2.0', |
1492
|
|
|
|
|
|
|
g_renew => '2.0', |
1493
|
|
|
|
|
|
|
g_relation_select => '2.0', |
1494
|
|
|
|
|
|
|
g_relation_print => '2.0', |
1495
|
|
|
|
|
|
|
g_relation_new => '2.0', |
1496
|
|
|
|
|
|
|
g_relation_insert => '2.0', |
1497
|
|
|
|
|
|
|
g_relation_index => '2.0', |
1498
|
|
|
|
|
|
|
g_relation_exists => '2.0', |
1499
|
|
|
|
|
|
|
g_relation_destroy => '2.0', |
1500
|
|
|
|
|
|
|
g_relation_delete => '2.0', |
1501
|
|
|
|
|
|
|
g_relation_count => '2.0', |
1502
|
|
|
|
|
|
|
g_rec_mutex_clear => '2.0', |
1503
|
|
|
|
|
|
|
g_realloc => '2.0', |
1504
|
|
|
|
|
|
|
g_random_set_seed => '2.0', |
1505
|
|
|
|
|
|
|
g_random_int_range => '2.0', |
1506
|
|
|
|
|
|
|
g_random_int => '2.0', |
1507
|
|
|
|
|
|
|
g_random_double_range => '2.0', |
1508
|
|
|
|
|
|
|
g_random_double => '2.0', |
1509
|
|
|
|
|
|
|
g_random_boolean => '2.0', |
1510
|
|
|
|
|
|
|
g_rand_set_seed => '2.0', |
1511
|
|
|
|
|
|
|
g_rand_new_with_seed => '2.0', |
1512
|
|
|
|
|
|
|
g_rand_new => '2.0', |
1513
|
|
|
|
|
|
|
g_rand_int_range => '2.0', |
1514
|
|
|
|
|
|
|
g_rand_int => '2.0', |
1515
|
|
|
|
|
|
|
g_rand_free => '2.0', |
1516
|
|
|
|
|
|
|
g_rand_double_range => '2.0', |
1517
|
|
|
|
|
|
|
g_rand_double => '2.0', |
1518
|
|
|
|
|
|
|
g_rand_boolean => '2.0', |
1519
|
|
|
|
|
|
|
g_queue_push_tail_link => '2.0', |
1520
|
|
|
|
|
|
|
g_queue_push_tail => '2.0', |
1521
|
|
|
|
|
|
|
g_queue_push_head_link => '2.0', |
1522
|
|
|
|
|
|
|
g_queue_push_head => '2.0', |
1523
|
|
|
|
|
|
|
g_queue_pop_tail_link => '2.0', |
1524
|
|
|
|
|
|
|
g_queue_pop_tail => '2.0', |
1525
|
|
|
|
|
|
|
g_queue_pop_head_link => '2.0', |
1526
|
|
|
|
|
|
|
g_queue_pop_head => '2.0', |
1527
|
|
|
|
|
|
|
g_queue_peek_tail => '2.0', |
1528
|
|
|
|
|
|
|
g_queue_peek_head => '2.0', |
1529
|
|
|
|
|
|
|
g_queue_new => '2.0', |
1530
|
|
|
|
|
|
|
g_queue_is_empty => '2.0', |
1531
|
|
|
|
|
|
|
g_queue_free => '2.0', |
1532
|
|
|
|
|
|
|
g_quark_try_string => '2.0', |
1533
|
|
|
|
|
|
|
g_quark_to_string => '2.0', |
1534
|
|
|
|
|
|
|
g_quark_from_string => '2.0', |
1535
|
|
|
|
|
|
|
g_quark_from_static_string => '2.0', |
1536
|
|
|
|
|
|
|
g_qsort_with_data => '2.0', |
1537
|
|
|
|
|
|
|
g_ptr_array_sort_with_data => '2.0', |
1538
|
|
|
|
|
|
|
g_ptr_array_sort => '2.0', |
1539
|
|
|
|
|
|
|
g_ptr_array_sized_new => '2.0', |
1540
|
|
|
|
|
|
|
g_ptr_array_set_size => '2.0', |
1541
|
|
|
|
|
|
|
g_ptr_array_remove_index_fast => '2.0', |
1542
|
|
|
|
|
|
|
g_ptr_array_remove_index => '2.0', |
1543
|
|
|
|
|
|
|
g_ptr_array_remove_fast => '2.0', |
1544
|
|
|
|
|
|
|
g_ptr_array_remove => '2.0', |
1545
|
|
|
|
|
|
|
g_ptr_array_new => '2.0', |
1546
|
|
|
|
|
|
|
g_ptr_array_index => '2.0', |
1547
|
|
|
|
|
|
|
g_ptr_array_free => '2.0', |
1548
|
|
|
|
|
|
|
g_ptr_array_add => '2.0', |
1549
|
|
|
|
|
|
|
g_propagate_error => '2.0', |
1550
|
|
|
|
|
|
|
g_private_set => '2.0', |
1551
|
|
|
|
|
|
|
g_private_new => '2.0', |
1552
|
|
|
|
|
|
|
g_private_get => '2.0', |
1553
|
|
|
|
|
|
|
g_printf_string_upper_bound => '2.0', |
1554
|
|
|
|
|
|
|
g_printerr => '2.0', |
1555
|
|
|
|
|
|
|
g_print => '2.0', |
1556
|
|
|
|
|
|
|
g_pattern_spec_new => '2.0', |
1557
|
|
|
|
|
|
|
g_pattern_spec_free => '2.0', |
1558
|
|
|
|
|
|
|
g_pattern_spec_equal => '2.0', |
1559
|
|
|
|
|
|
|
g_pattern_match_string => '2.0', |
1560
|
|
|
|
|
|
|
g_pattern_match_simple => '2.0', |
1561
|
|
|
|
|
|
|
g_pattern_match => '2.0', |
1562
|
|
|
|
|
|
|
g_path_skip_root => '2.0', |
1563
|
|
|
|
|
|
|
g_path_is_absolute => '2.0', |
1564
|
|
|
|
|
|
|
g_path_get_dirname => '2.0', |
1565
|
|
|
|
|
|
|
g_path_get_basename => '2.0', |
1566
|
|
|
|
|
|
|
g_parse_debug_string => '2.0', |
1567
|
|
|
|
|
|
|
g_on_error_stack_trace => '2.0', |
1568
|
|
|
|
|
|
|
g_on_error_query => '2.0', |
1569
|
|
|
|
|
|
|
g_nullify_pointer => '2.0', |
1570
|
|
|
|
|
|
|
g_ntohs => '2.0', |
1571
|
|
|
|
|
|
|
g_ntohl => '2.0', |
1572
|
|
|
|
|
|
|
g_node_unlink => '2.0', |
1573
|
|
|
|
|
|
|
g_node_traverse => '2.0', |
1574
|
|
|
|
|
|
|
g_node_reverse_children => '2.0', |
1575
|
|
|
|
|
|
|
g_node_prev_sibling => '2.0', |
1576
|
|
|
|
|
|
|
g_node_prepend_data => '2.0', |
1577
|
|
|
|
|
|
|
g_node_prepend => '2.0', |
1578
|
|
|
|
|
|
|
g_node_nth_child => '2.0', |
1579
|
|
|
|
|
|
|
g_node_next_sibling => '2.0', |
1580
|
|
|
|
|
|
|
g_node_new => '2.0', |
1581
|
|
|
|
|
|
|
g_node_n_nodes => '2.0', |
1582
|
|
|
|
|
|
|
g_node_n_children => '2.0', |
1583
|
|
|
|
|
|
|
g_node_max_height => '2.0', |
1584
|
|
|
|
|
|
|
g_node_last_sibling => '2.0', |
1585
|
|
|
|
|
|
|
g_node_last_child => '2.0', |
1586
|
|
|
|
|
|
|
g_node_is_ancestor => '2.0', |
1587
|
|
|
|
|
|
|
g_node_insert_data_before => '2.0', |
1588
|
|
|
|
|
|
|
g_node_insert_data_after => '2.0', |
1589
|
|
|
|
|
|
|
g_node_insert_data => '2.0', |
1590
|
|
|
|
|
|
|
g_node_insert_before => '2.0', |
1591
|
|
|
|
|
|
|
g_node_insert_after => '2.0', |
1592
|
|
|
|
|
|
|
g_node_insert => '2.0', |
1593
|
|
|
|
|
|
|
g_node_get_root => '2.0', |
1594
|
|
|
|
|
|
|
g_node_first_sibling => '2.0', |
1595
|
|
|
|
|
|
|
g_node_first_child => '2.0', |
1596
|
|
|
|
|
|
|
g_node_find_child => '2.0', |
1597
|
|
|
|
|
|
|
g_node_find => '2.0', |
1598
|
|
|
|
|
|
|
g_node_destroy => '2.0', |
1599
|
|
|
|
|
|
|
g_node_depth => '2.0', |
1600
|
|
|
|
|
|
|
g_node_copy => '2.0', |
1601
|
|
|
|
|
|
|
g_node_children_foreach => '2.0', |
1602
|
|
|
|
|
|
|
g_node_child_position => '2.0', |
1603
|
|
|
|
|
|
|
g_node_child_index => '2.0', |
1604
|
|
|
|
|
|
|
g_node_append_data => '2.0', |
1605
|
|
|
|
|
|
|
g_node_append => '2.0', |
1606
|
|
|
|
|
|
|
g_newa => '2.0', |
1607
|
|
|
|
|
|
|
g_new0 => '2.0', |
1608
|
|
|
|
|
|
|
g_new => '2.0', |
1609
|
|
|
|
|
|
|
g_mutex_unlock => '2.0', |
1610
|
|
|
|
|
|
|
g_mutex_trylock => '2.0', |
1611
|
|
|
|
|
|
|
g_mutex_new => '2.0', |
1612
|
|
|
|
|
|
|
g_mutex_lock => '2.0', |
1613
|
|
|
|
|
|
|
g_mutex_free => '2.0', |
1614
|
|
|
|
|
|
|
g_mutex_clear => '2.0', |
1615
|
|
|
|
|
|
|
g_module_symbol => '2.0', |
1616
|
|
|
|
|
|
|
g_module_supported => '2.0', |
1617
|
|
|
|
|
|
|
g_module_open => '2.0', |
1618
|
|
|
|
|
|
|
g_module_name => '2.0', |
1619
|
|
|
|
|
|
|
g_module_make_resident => '2.0', |
1620
|
|
|
|
|
|
|
g_module_error => '2.0', |
1621
|
|
|
|
|
|
|
g_module_close => '2.0', |
1622
|
|
|
|
|
|
|
g_module_build_path => '2.0', |
1623
|
|
|
|
|
|
|
g_mkstemp => '2.0', |
1624
|
|
|
|
|
|
|
g_message => '2.0', |
1625
|
|
|
|
|
|
|
g_memmove => '2.0', |
1626
|
|
|
|
|
|
|
g_memdup => '2.0', |
1627
|
|
|
|
|
|
|
g_mem_set_vtable => '2.0', |
1628
|
|
|
|
|
|
|
g_mem_profile => '2.0', |
1629
|
|
|
|
|
|
|
g_mem_is_system_malloc => '2.0', |
1630
|
|
|
|
|
|
|
g_mem_gc_friendly => '2.0', |
1631
|
|
|
|
|
|
|
g_markup_parse_context_parse => '2.0', |
1632
|
|
|
|
|
|
|
g_markup_parse_context_new => '2.0', |
1633
|
|
|
|
|
|
|
g_markup_parse_context_get_position => '2.0', |
1634
|
|
|
|
|
|
|
g_markup_parse_context_free => '2.0', |
1635
|
|
|
|
|
|
|
g_markup_parse_context_end_parse => '2.0', |
1636
|
|
|
|
|
|
|
g_markup_escape_text => '2.0', |
1637
|
|
|
|
|
|
|
g_mapped_file_unref => '2.0', |
1638
|
|
|
|
|
|
|
g_malloc0 => '2.0', |
1639
|
|
|
|
|
|
|
g_malloc => '2.0', |
1640
|
|
|
|
|
|
|
g_main_set_poll_func => '2.0', |
1641
|
|
|
|
|
|
|
g_main_run => '2.0', |
1642
|
|
|
|
|
|
|
g_main_quit => '2.0', |
1643
|
|
|
|
|
|
|
g_main_pending => '2.0', |
1644
|
|
|
|
|
|
|
g_main_new => '2.0', |
1645
|
|
|
|
|
|
|
g_main_loop_unref => '2.0', |
1646
|
|
|
|
|
|
|
g_main_loop_run => '2.0', |
1647
|
|
|
|
|
|
|
g_main_loop_ref => '2.0', |
1648
|
|
|
|
|
|
|
g_main_loop_quit => '2.0', |
1649
|
|
|
|
|
|
|
g_main_loop_new => '2.0', |
1650
|
|
|
|
|
|
|
g_main_loop_is_running => '2.0', |
1651
|
|
|
|
|
|
|
g_main_loop_get_context => '2.0', |
1652
|
|
|
|
|
|
|
g_main_iteration => '2.0', |
1653
|
|
|
|
|
|
|
g_main_is_running => '2.0', |
1654
|
|
|
|
|
|
|
g_main_destroy => '2.0', |
1655
|
|
|
|
|
|
|
g_main_depth => '2.0', |
1656
|
|
|
|
|
|
|
g_main_context_wakeup => '2.0', |
1657
|
|
|
|
|
|
|
g_main_context_wait => '2.0', |
1658
|
|
|
|
|
|
|
g_main_context_unref => '2.0', |
1659
|
|
|
|
|
|
|
g_main_context_set_poll_func => '2.0', |
1660
|
|
|
|
|
|
|
g_main_context_remove_poll => '2.0', |
1661
|
|
|
|
|
|
|
g_main_context_release => '2.0', |
1662
|
|
|
|
|
|
|
g_main_context_ref => '2.0', |
1663
|
|
|
|
|
|
|
g_main_context_query => '2.0', |
1664
|
|
|
|
|
|
|
g_main_context_prepare => '2.0', |
1665
|
|
|
|
|
|
|
g_main_context_pending => '2.0', |
1666
|
|
|
|
|
|
|
g_main_context_new => '2.0', |
1667
|
|
|
|
|
|
|
g_main_context_iteration => '2.0', |
1668
|
|
|
|
|
|
|
g_main_context_get_poll_func => '2.0', |
1669
|
|
|
|
|
|
|
g_main_context_find_source_by_user_data => '2.0', |
1670
|
|
|
|
|
|
|
g_main_context_find_source_by_id => '2.0', |
1671
|
|
|
|
|
|
|
g_main_context_find_source_by_funcs_user_data => '2.0', |
1672
|
|
|
|
|
|
|
g_main_context_dispatch => '2.0', |
1673
|
|
|
|
|
|
|
g_main_context_default => '2.0', |
1674
|
|
|
|
|
|
|
g_main_context_check => '2.0', |
1675
|
|
|
|
|
|
|
g_main_context_add_poll => '2.0', |
1676
|
|
|
|
|
|
|
g_main_context_acquire => '2.0', |
1677
|
|
|
|
|
|
|
g_logv => '2.0', |
1678
|
|
|
|
|
|
|
g_log_set_handler => '2.0', |
1679
|
|
|
|
|
|
|
g_log_set_fatal_mask => '2.0', |
1680
|
|
|
|
|
|
|
g_log_set_always_fatal => '2.0', |
1681
|
|
|
|
|
|
|
g_log_remove_handler => '2.0', |
1682
|
|
|
|
|
|
|
g_log_default_handler => '2.0', |
1683
|
|
|
|
|
|
|
g_log => '2.0', |
1684
|
|
|
|
|
|
|
g_locale_to_utf8 => '2.0', |
1685
|
|
|
|
|
|
|
g_locale_from_utf8 => '2.0', |
1686
|
|
|
|
|
|
|
g_list_sort_with_data => '2.0', |
1687
|
|
|
|
|
|
|
g_list_sort => '2.0', |
1688
|
|
|
|
|
|
|
g_list_reverse => '2.0', |
1689
|
|
|
|
|
|
|
g_list_remove_link => '2.0', |
1690
|
|
|
|
|
|
|
g_list_remove_all => '2.0', |
1691
|
|
|
|
|
|
|
g_list_remove => '2.0', |
1692
|
|
|
|
|
|
|
g_list_previous => '2.0', |
1693
|
|
|
|
|
|
|
g_list_prepend => '2.0', |
1694
|
|
|
|
|
|
|
g_list_position => '2.0', |
1695
|
|
|
|
|
|
|
g_list_nth_prev => '2.0', |
1696
|
|
|
|
|
|
|
g_list_nth_data => '2.0', |
1697
|
|
|
|
|
|
|
g_list_nth => '2.0', |
1698
|
|
|
|
|
|
|
g_list_next => '2.0', |
1699
|
|
|
|
|
|
|
g_list_length => '2.0', |
1700
|
|
|
|
|
|
|
g_list_last => '2.0', |
1701
|
|
|
|
|
|
|
g_list_insert_sorted => '2.0', |
1702
|
|
|
|
|
|
|
g_list_insert_before => '2.0', |
1703
|
|
|
|
|
|
|
g_list_insert => '2.0', |
1704
|
|
|
|
|
|
|
g_list_index => '2.0', |
1705
|
|
|
|
|
|
|
g_list_free_1 => '2.0', |
1706
|
|
|
|
|
|
|
g_list_free1 => '2.0', |
1707
|
|
|
|
|
|
|
g_list_free => '2.0', |
1708
|
|
|
|
|
|
|
g_list_foreach => '2.0', |
1709
|
|
|
|
|
|
|
g_list_first => '2.0', |
1710
|
|
|
|
|
|
|
g_list_find_custom => '2.0', |
1711
|
|
|
|
|
|
|
g_list_find => '2.0', |
1712
|
|
|
|
|
|
|
g_list_delete_link => '2.0', |
1713
|
|
|
|
|
|
|
g_list_copy => '2.0', |
1714
|
|
|
|
|
|
|
g_list_concat => '2.0', |
1715
|
|
|
|
|
|
|
g_list_append => '2.0', |
1716
|
|
|
|
|
|
|
g_list_alloc => '2.0', |
1717
|
|
|
|
|
|
|
g_io_create_watch => '2.0', |
1718
|
|
|
|
|
|
|
g_io_channel_write_unichar => '2.0', |
1719
|
|
|
|
|
|
|
g_io_channel_write_chars => '2.0', |
1720
|
|
|
|
|
|
|
g_io_channel_write => '2.0', |
1721
|
|
|
|
|
|
|
g_io_channel_win32_new_socket => '2.0', |
1722
|
|
|
|
|
|
|
g_io_channel_win32_new_messages => '2.0', |
1723
|
|
|
|
|
|
|
g_io_channel_win32_new_fd => '2.0', |
1724
|
|
|
|
|
|
|
g_io_channel_unref => '2.0', |
1725
|
|
|
|
|
|
|
g_io_channel_unix_new => '2.0', |
1726
|
|
|
|
|
|
|
g_io_channel_unix_get_fd => '2.0', |
1727
|
|
|
|
|
|
|
g_io_channel_shutdown => '2.0', |
1728
|
|
|
|
|
|
|
g_io_channel_set_line_term => '2.0', |
1729
|
|
|
|
|
|
|
g_io_channel_set_flags => '2.0', |
1730
|
|
|
|
|
|
|
g_io_channel_set_encoding => '2.0', |
1731
|
|
|
|
|
|
|
g_io_channel_set_close_on_unref => '2.0', |
1732
|
|
|
|
|
|
|
g_io_channel_set_buffered => '2.0', |
1733
|
|
|
|
|
|
|
g_io_channel_set_buffer_size => '2.0', |
1734
|
|
|
|
|
|
|
g_io_channel_seek_position => '2.0', |
1735
|
|
|
|
|
|
|
g_io_channel_seek => '2.0', |
1736
|
|
|
|
|
|
|
g_io_channel_ref => '2.0', |
1737
|
|
|
|
|
|
|
g_io_channel_read_unichar => '2.0', |
1738
|
|
|
|
|
|
|
g_io_channel_read_to_end => '2.0', |
1739
|
|
|
|
|
|
|
g_io_channel_read_line_string => '2.0', |
1740
|
|
|
|
|
|
|
g_io_channel_read_line => '2.0', |
1741
|
|
|
|
|
|
|
g_io_channel_read_chars => '2.0', |
1742
|
|
|
|
|
|
|
g_io_channel_read => '2.0', |
1743
|
|
|
|
|
|
|
g_io_channel_new_file => '2.0', |
1744
|
|
|
|
|
|
|
g_io_channel_init => '2.0', |
1745
|
|
|
|
|
|
|
g_io_channel_get_line_term => '2.0', |
1746
|
|
|
|
|
|
|
g_io_channel_get_flags => '2.0', |
1747
|
|
|
|
|
|
|
g_io_channel_get_encoding => '2.0', |
1748
|
|
|
|
|
|
|
g_io_channel_get_close_on_unref => '2.0', |
1749
|
|
|
|
|
|
|
g_io_channel_get_buffered => '2.0', |
1750
|
|
|
|
|
|
|
g_io_channel_get_buffer_size => '2.0', |
1751
|
|
|
|
|
|
|
g_io_channel_get_buffer_condition => '2.0', |
1752
|
|
|
|
|
|
|
g_io_channel_flush => '2.0', |
1753
|
|
|
|
|
|
|
g_io_channel_error_from_errno => '2.0', |
1754
|
|
|
|
|
|
|
g_io_channel_close => '2.0', |
1755
|
|
|
|
|
|
|
g_io_add_watch_full => '2.0', |
1756
|
|
|
|
|
|
|
g_io_add_watch => '2.0', |
1757
|
|
|
|
|
|
|
g_int_hash => '2.0', |
1758
|
|
|
|
|
|
|
g_int_equal => '2.0', |
1759
|
|
|
|
|
|
|
g_idle_source_new => '2.0', |
1760
|
|
|
|
|
|
|
g_idle_remove_by_data => '2.0', |
1761
|
|
|
|
|
|
|
g_idle_add_full => '2.0', |
1762
|
|
|
|
|
|
|
g_idle_add => '2.0', |
1763
|
|
|
|
|
|
|
g_iconv_open => '2.0', |
1764
|
|
|
|
|
|
|
g_iconv_close => '2.0', |
1765
|
|
|
|
|
|
|
g_iconv => '2.0', |
1766
|
|
|
|
|
|
|
g_htons => '2.0', |
1767
|
|
|
|
|
|
|
g_htonl => '2.0', |
1768
|
|
|
|
|
|
|
g_hook_unref => '2.0', |
1769
|
|
|
|
|
|
|
g_hook_ref => '2.0', |
1770
|
|
|
|
|
|
|
g_hook_prepend => '2.0', |
1771
|
|
|
|
|
|
|
g_hook_next_valid => '2.0', |
1772
|
|
|
|
|
|
|
g_hook_list_marshal_check => '2.0', |
1773
|
|
|
|
|
|
|
g_hook_list_marshal => '2.0', |
1774
|
|
|
|
|
|
|
g_hook_list_invoke_check => '2.0', |
1775
|
|
|
|
|
|
|
g_hook_list_invoke => '2.0', |
1776
|
|
|
|
|
|
|
g_hook_list_init => '2.0', |
1777
|
|
|
|
|
|
|
g_hook_list_clear => '2.0', |
1778
|
|
|
|
|
|
|
g_hook_insert_sorted => '2.0', |
1779
|
|
|
|
|
|
|
g_hook_insert_before => '2.0', |
1780
|
|
|
|
|
|
|
g_hook_get => '2.0', |
1781
|
|
|
|
|
|
|
g_hook_free => '2.0', |
1782
|
|
|
|
|
|
|
g_hook_first_valid => '2.0', |
1783
|
|
|
|
|
|
|
g_hook_find_func_data => '2.0', |
1784
|
|
|
|
|
|
|
g_hook_find_func => '2.0', |
1785
|
|
|
|
|
|
|
g_hook_find_data => '2.0', |
1786
|
|
|
|
|
|
|
g_hook_find => '2.0', |
1787
|
|
|
|
|
|
|
g_hook_destroy_link => '2.0', |
1788
|
|
|
|
|
|
|
g_hook_destroy => '2.0', |
1789
|
|
|
|
|
|
|
g_hook_compare_ids => '2.0', |
1790
|
|
|
|
|
|
|
g_hook_append => '2.0', |
1791
|
|
|
|
|
|
|
g_hook_alloc => '2.0', |
1792
|
|
|
|
|
|
|
g_hash_table_thaw => '2.0', |
1793
|
|
|
|
|
|
|
g_hash_table_steal => '2.0', |
1794
|
|
|
|
|
|
|
g_hash_table_size => '2.0', |
1795
|
|
|
|
|
|
|
g_hash_table_replace => '2.0', |
1796
|
|
|
|
|
|
|
g_hash_table_remove => '2.0', |
1797
|
|
|
|
|
|
|
g_hash_table_new_full => '2.0', |
1798
|
|
|
|
|
|
|
g_hash_table_new => '2.0', |
1799
|
|
|
|
|
|
|
g_hash_table_lookup_extended => '2.0', |
1800
|
|
|
|
|
|
|
g_hash_table_lookup => '2.0', |
1801
|
|
|
|
|
|
|
g_hash_table_insert => '2.0', |
1802
|
|
|
|
|
|
|
g_hash_table_freeze => '2.0', |
1803
|
|
|
|
|
|
|
g_hash_table_foreach_steal => '2.0', |
1804
|
|
|
|
|
|
|
g_hash_table_foreach_remove => '2.0', |
1805
|
|
|
|
|
|
|
g_hash_table_foreach => '2.0', |
1806
|
|
|
|
|
|
|
g_hash_table_destroy => '2.0', |
1807
|
|
|
|
|
|
|
g_getenv => '2.0', |
1808
|
|
|
|
|
|
|
g_get_user_name => '2.0', |
1809
|
|
|
|
|
|
|
g_get_tmp_dir => '2.0', |
1810
|
|
|
|
|
|
|
g_get_real_name => '2.0', |
1811
|
|
|
|
|
|
|
g_get_prgname => '2.0', |
1812
|
|
|
|
|
|
|
g_get_home_dir => '2.0', |
1813
|
|
|
|
|
|
|
g_get_current_time => '2.0', |
1814
|
|
|
|
|
|
|
g_get_current_dir => '2.0', |
1815
|
|
|
|
|
|
|
g_get_codeset => '2.0', |
1816
|
|
|
|
|
|
|
g_get_charset => '2.0', |
1817
|
|
|
|
|
|
|
g_free => '2.0', |
1818
|
|
|
|
|
|
|
g_find_program_in_path => '2.0', |
1819
|
|
|
|
|
|
|
g_filename_to_utf8 => '2.0', |
1820
|
|
|
|
|
|
|
g_filename_to_uri => '2.0', |
1821
|
|
|
|
|
|
|
g_filename_from_utf8 => '2.0', |
1822
|
|
|
|
|
|
|
g_filename_from_uri => '2.0', |
1823
|
|
|
|
|
|
|
g_file_test => '2.0', |
1824
|
|
|
|
|
|
|
g_file_open_tmp => '2.0', |
1825
|
|
|
|
|
|
|
g_file_get_contents => '2.0', |
1826
|
|
|
|
|
|
|
g_file_error_from_errno => '2.0', |
1827
|
|
|
|
|
|
|
g_error_new_literal => '2.0', |
1828
|
|
|
|
|
|
|
g_error_new => '2.0', |
1829
|
|
|
|
|
|
|
g_error_matches => '2.0', |
1830
|
|
|
|
|
|
|
g_error_free => '2.0', |
1831
|
|
|
|
|
|
|
g_error_copy => '2.0', |
1832
|
|
|
|
|
|
|
g_error => '2.0', |
1833
|
|
|
|
|
|
|
g_dirname => '2.0', |
1834
|
|
|
|
|
|
|
g_direct_hash => '2.0', |
1835
|
|
|
|
|
|
|
g_direct_equal => '2.0', |
1836
|
|
|
|
|
|
|
g_dir_rewind => '2.0', |
1837
|
|
|
|
|
|
|
g_dir_read_name => '2.0', |
1838
|
|
|
|
|
|
|
g_dir_open => '2.0', |
1839
|
|
|
|
|
|
|
g_dir_close => '2.0', |
1840
|
|
|
|
|
|
|
g_date_valid_year => '2.0', |
1841
|
|
|
|
|
|
|
g_date_valid_weekday => '2.0', |
1842
|
|
|
|
|
|
|
g_date_valid_month => '2.0', |
1843
|
|
|
|
|
|
|
g_date_valid_julian => '2.0', |
1844
|
|
|
|
|
|
|
g_date_valid_dmy => '2.0', |
1845
|
|
|
|
|
|
|
g_date_valid_day => '2.0', |
1846
|
|
|
|
|
|
|
g_date_valid => '2.0', |
1847
|
|
|
|
|
|
|
g_date_to_struct_tm => '2.0', |
1848
|
|
|
|
|
|
|
g_date_subtract_years => '2.0', |
1849
|
|
|
|
|
|
|
g_date_subtract_months => '2.0', |
1850
|
|
|
|
|
|
|
g_date_subtract_days => '2.0', |
1851
|
|
|
|
|
|
|
g_date_strftime => '2.0', |
1852
|
|
|
|
|
|
|
g_date_set_year => '2.0', |
1853
|
|
|
|
|
|
|
g_date_set_time => '2.0', |
1854
|
|
|
|
|
|
|
g_date_set_parse => '2.0', |
1855
|
|
|
|
|
|
|
g_date_set_month => '2.0', |
1856
|
|
|
|
|
|
|
g_date_set_julian => '2.0', |
1857
|
|
|
|
|
|
|
g_date_set_dmy => '2.0', |
1858
|
|
|
|
|
|
|
g_date_set_day => '2.0', |
1859
|
|
|
|
|
|
|
g_date_order => '2.0', |
1860
|
|
|
|
|
|
|
g_date_new_julian => '2.0', |
1861
|
|
|
|
|
|
|
g_date_new_dmy => '2.0', |
1862
|
|
|
|
|
|
|
g_date_new => '2.0', |
1863
|
|
|
|
|
|
|
g_date_is_leap_year => '2.0', |
1864
|
|
|
|
|
|
|
g_date_is_last_of_month => '2.0', |
1865
|
|
|
|
|
|
|
g_date_is_first_of_month => '2.0', |
1866
|
|
|
|
|
|
|
g_date_get_year => '2.0', |
1867
|
|
|
|
|
|
|
g_date_get_weekday => '2.0', |
1868
|
|
|
|
|
|
|
g_date_get_sunday_weeks_in_year => '2.0', |
1869
|
|
|
|
|
|
|
g_date_get_sunday_week_of_year => '2.0', |
1870
|
|
|
|
|
|
|
g_date_get_month => '2.0', |
1871
|
|
|
|
|
|
|
g_date_get_monday_weeks_in_year => '2.0', |
1872
|
|
|
|
|
|
|
g_date_get_monday_week_of_year => '2.0', |
1873
|
|
|
|
|
|
|
g_date_get_julian => '2.0', |
1874
|
|
|
|
|
|
|
g_date_get_days_in_month => '2.0', |
1875
|
|
|
|
|
|
|
g_date_get_day_of_year => '2.0', |
1876
|
|
|
|
|
|
|
g_date_get_day => '2.0', |
1877
|
|
|
|
|
|
|
g_date_free => '2.0', |
1878
|
|
|
|
|
|
|
g_date_days_between => '2.0', |
1879
|
|
|
|
|
|
|
g_date_compare => '2.0', |
1880
|
|
|
|
|
|
|
g_date_clear => '2.0', |
1881
|
|
|
|
|
|
|
g_date_clamp => '2.0', |
1882
|
|
|
|
|
|
|
g_date_add_years => '2.0', |
1883
|
|
|
|
|
|
|
g_date_add_months => '2.0', |
1884
|
|
|
|
|
|
|
g_date_add_days => '2.0', |
1885
|
|
|
|
|
|
|
g_dataset_set_data_full => '2.0', |
1886
|
|
|
|
|
|
|
g_dataset_set_data => '2.0', |
1887
|
|
|
|
|
|
|
g_dataset_remove_no_notify => '2.0', |
1888
|
|
|
|
|
|
|
g_dataset_remove_data => '2.0', |
1889
|
|
|
|
|
|
|
g_dataset_id_set_data_full => '2.0', |
1890
|
|
|
|
|
|
|
g_dataset_id_set_data => '2.0', |
1891
|
|
|
|
|
|
|
g_dataset_id_remove_no_notify => '2.0', |
1892
|
|
|
|
|
|
|
g_dataset_id_remove_data => '2.0', |
1893
|
|
|
|
|
|
|
g_dataset_id_get_data => '2.0', |
1894
|
|
|
|
|
|
|
g_dataset_get_data => '2.0', |
1895
|
|
|
|
|
|
|
g_dataset_foreach => '2.0', |
1896
|
|
|
|
|
|
|
g_dataset_destroy => '2.0', |
1897
|
|
|
|
|
|
|
g_datalist_set_data_full => '2.0', |
1898
|
|
|
|
|
|
|
g_datalist_set_data => '2.0', |
1899
|
|
|
|
|
|
|
g_datalist_remove_no_notify => '2.0', |
1900
|
|
|
|
|
|
|
g_datalist_remove_data => '2.0', |
1901
|
|
|
|
|
|
|
g_datalist_init => '2.0', |
1902
|
|
|
|
|
|
|
g_datalist_id_set_data_full => '2.0', |
1903
|
|
|
|
|
|
|
g_datalist_id_set_data => '2.0', |
1904
|
|
|
|
|
|
|
g_datalist_id_remove_no_notify => '2.0', |
1905
|
|
|
|
|
|
|
g_datalist_id_remove_data => '2.0', |
1906
|
|
|
|
|
|
|
g_datalist_id_get_data => '2.0', |
1907
|
|
|
|
|
|
|
g_datalist_get_data => '2.0', |
1908
|
|
|
|
|
|
|
g_datalist_foreach => '2.0', |
1909
|
|
|
|
|
|
|
g_datalist_clear => '2.0', |
1910
|
|
|
|
|
|
|
g_critical => '2.0', |
1911
|
|
|
|
|
|
|
g_convert_with_iconv => '2.0', |
1912
|
|
|
|
|
|
|
g_convert_with_fallback => '2.0', |
1913
|
|
|
|
|
|
|
g_convert => '2.0', |
1914
|
|
|
|
|
|
|
g_cond_wait => '2.0', |
1915
|
|
|
|
|
|
|
g_cond_timed_wait => '2.0', |
1916
|
|
|
|
|
|
|
g_cond_signal => '2.0', |
1917
|
|
|
|
|
|
|
g_cond_new => '2.0', |
1918
|
|
|
|
|
|
|
g_cond_free => '2.0', |
1919
|
|
|
|
|
|
|
g_cond_broadcast => '2.0', |
1920
|
|
|
|
|
|
|
g_completion_set_compare => '2.0', |
1921
|
|
|
|
|
|
|
g_completion_remove_items => '2.0', |
1922
|
|
|
|
|
|
|
g_completion_new => '2.0', |
1923
|
|
|
|
|
|
|
g_completion_free => '2.0', |
1924
|
|
|
|
|
|
|
g_completion_complete => '2.0', |
1925
|
|
|
|
|
|
|
g_completion_clear_items => '2.0', |
1926
|
|
|
|
|
|
|
g_completion_add_items => '2.0', |
1927
|
|
|
|
|
|
|
g_clear_error => '2.0', |
1928
|
|
|
|
|
|
|
g_cache_value_foreach => '2.0', |
1929
|
|
|
|
|
|
|
g_cache_remove => '2.0', |
1930
|
|
|
|
|
|
|
g_cache_new => '2.0', |
1931
|
|
|
|
|
|
|
g_cache_key_foreach => '2.0', |
1932
|
|
|
|
|
|
|
g_cache_insert => '2.0', |
1933
|
|
|
|
|
|
|
g_cache_destroy => '2.0', |
1934
|
|
|
|
|
|
|
g_byte_array_sort_with_data => '2.0', |
1935
|
|
|
|
|
|
|
g_byte_array_sort => '2.0', |
1936
|
|
|
|
|
|
|
g_byte_array_sized_new => '2.0', |
1937
|
|
|
|
|
|
|
g_byte_array_set_size => '2.0', |
1938
|
|
|
|
|
|
|
g_byte_array_remove_index_fast => '2.0', |
1939
|
|
|
|
|
|
|
g_byte_array_remove_index => '2.0', |
1940
|
|
|
|
|
|
|
g_byte_array_prepend => '2.0', |
1941
|
|
|
|
|
|
|
g_byte_array_new => '2.0', |
1942
|
|
|
|
|
|
|
g_byte_array_free => '2.0', |
1943
|
|
|
|
|
|
|
g_byte_array_append => '2.0', |
1944
|
|
|
|
|
|
|
g_build_path => '2.0', |
1945
|
|
|
|
|
|
|
g_build_filename => '2.0', |
1946
|
|
|
|
|
|
|
g_bit_storage => '2.0', |
1947
|
|
|
|
|
|
|
g_bit_nth_msf => '2.0', |
1948
|
|
|
|
|
|
|
g_bit_nth_lsf => '2.0', |
1949
|
|
|
|
|
|
|
g_basename => '2.0', |
1950
|
|
|
|
|
|
|
g_atexit => '2.0', |
1951
|
|
|
|
|
|
|
g_async_queue_unref_and_unlock => '2.0', |
1952
|
|
|
|
|
|
|
g_async_queue_unref => '2.0', |
1953
|
|
|
|
|
|
|
g_async_queue_unlock => '2.0', |
1954
|
|
|
|
|
|
|
g_async_queue_try_pop_unlocked => '2.0', |
1955
|
|
|
|
|
|
|
g_async_queue_try_pop => '2.0', |
1956
|
|
|
|
|
|
|
g_async_queue_timeout_pop_unlocked => '2.0', |
1957
|
|
|
|
|
|
|
g_async_queue_timeout_pop => '2.0', |
1958
|
|
|
|
|
|
|
g_async_queue_timed_pop_unlocked => '2.0', |
1959
|
|
|
|
|
|
|
g_async_queue_timed_pop => '2.0', |
1960
|
|
|
|
|
|
|
g_async_queue_ref_unlocked => '2.0', |
1961
|
|
|
|
|
|
|
g_async_queue_ref => '2.0', |
1962
|
|
|
|
|
|
|
g_async_queue_push_unlocked => '2.0', |
1963
|
|
|
|
|
|
|
g_async_queue_push => '2.0', |
1964
|
|
|
|
|
|
|
g_async_queue_pop_unlocked => '2.0', |
1965
|
|
|
|
|
|
|
g_async_queue_pop => '2.0', |
1966
|
|
|
|
|
|
|
g_async_queue_new => '2.0', |
1967
|
|
|
|
|
|
|
g_async_queue_lock => '2.0', |
1968
|
|
|
|
|
|
|
g_async_queue_length_unlocked => '2.0', |
1969
|
|
|
|
|
|
|
g_async_queue_length => '2.0', |
1970
|
|
|
|
|
|
|
g_assert_not_reached => '2.0', |
1971
|
|
|
|
|
|
|
g_assert => '2.0', |
1972
|
|
|
|
|
|
|
g_ascii_xdigit_value => '2.0', |
1973
|
|
|
|
|
|
|
g_ascii_toupper => '2.0', |
1974
|
|
|
|
|
|
|
g_ascii_tolower => '2.0', |
1975
|
|
|
|
|
|
|
g_ascii_strup => '2.0', |
1976
|
|
|
|
|
|
|
g_ascii_strtod => '2.0', |
1977
|
|
|
|
|
|
|
g_ascii_strncasecmp => '2.0', |
1978
|
|
|
|
|
|
|
g_ascii_strdown => '2.0', |
1979
|
|
|
|
|
|
|
g_ascii_strcasecmp => '2.0', |
1980
|
|
|
|
|
|
|
g_ascii_isxdigit => '2.0', |
1981
|
|
|
|
|
|
|
g_ascii_isupper => '2.0', |
1982
|
|
|
|
|
|
|
g_ascii_isspace => '2.0', |
1983
|
|
|
|
|
|
|
g_ascii_ispunct => '2.0', |
1984
|
|
|
|
|
|
|
g_ascii_isprint => '2.0', |
1985
|
|
|
|
|
|
|
g_ascii_islower => '2.0', |
1986
|
|
|
|
|
|
|
g_ascii_isgraph => '2.0', |
1987
|
|
|
|
|
|
|
g_ascii_isdigit => '2.0', |
1988
|
|
|
|
|
|
|
g_ascii_iscntrl => '2.0', |
1989
|
|
|
|
|
|
|
g_ascii_isalpha => '2.0', |
1990
|
|
|
|
|
|
|
g_ascii_isalnum => '2.0', |
1991
|
|
|
|
|
|
|
g_ascii_formatd => '2.0', |
1992
|
|
|
|
|
|
|
g_ascii_dtostr => '2.0', |
1993
|
|
|
|
|
|
|
g_ascii_digit_value => '2.0', |
1994
|
|
|
|
|
|
|
g_array_sort_with_data => '2.0', |
1995
|
|
|
|
|
|
|
g_array_sort => '2.0', |
1996
|
|
|
|
|
|
|
g_array_sized_new => '2.0', |
1997
|
|
|
|
|
|
|
g_array_set_size => '2.0', |
1998
|
|
|
|
|
|
|
g_array_remove_index_fast => '2.0', |
1999
|
|
|
|
|
|
|
g_array_remove_index => '2.0', |
2000
|
|
|
|
|
|
|
g_array_prepend_vals => '2.0', |
2001
|
|
|
|
|
|
|
g_array_prepend_val => '2.0', |
2002
|
|
|
|
|
|
|
g_array_new => '2.0', |
2003
|
|
|
|
|
|
|
g_array_insert_vals => '2.0', |
2004
|
|
|
|
|
|
|
g_array_insert_val => '2.0', |
2005
|
|
|
|
|
|
|
g_array_index => '2.0', |
2006
|
|
|
|
|
|
|
g_array_free => '2.0', |
2007
|
|
|
|
|
|
|
g_array_append_vals => '2.0', |
2008
|
|
|
|
|
|
|
g_array_append_val => '2.0', |
2009
|
|
|
|
|
|
|
g_alloca => '2.0', |
2010
|
|
|
|
|
|
|
TRUE => '2.0', |
2011
|
|
|
|
|
|
|
NULL => '2.0', |
2012
|
|
|
|
|
|
|
MIN => '2.0', |
2013
|
|
|
|
|
|
|
MAXPATHLEN => '2.0', |
2014
|
|
|
|
|
|
|
MAX => '2.0', |
2015
|
|
|
|
|
|
|
G_WIN32_IS_NT_BASED => '2.0', |
2016
|
|
|
|
|
|
|
G_WIN32_DLLMAIN_FOR_DLL_NAME => '2.0', |
2017
|
|
|
|
|
|
|
G_VA_COPY => '2.0', |
2018
|
|
|
|
|
|
|
G_VARIANT_TYPE_VARIANT => '2.0', |
2019
|
|
|
|
|
|
|
G_VARIANT_TYPE_VARDICT => '2.0', |
2020
|
|
|
|
|
|
|
G_VARIANT_TYPE_UNIT => '2.0', |
2021
|
|
|
|
|
|
|
G_VARIANT_TYPE_UINT64 => '2.0', |
2022
|
|
|
|
|
|
|
G_VARIANT_TYPE_UINT32 => '2.0', |
2023
|
|
|
|
|
|
|
G_VARIANT_TYPE_UINT16 => '2.0', |
2024
|
|
|
|
|
|
|
G_VARIANT_TYPE_TUPLE => '2.0', |
2025
|
|
|
|
|
|
|
G_VARIANT_TYPE_STRING_ARRAY => '2.0', |
2026
|
|
|
|
|
|
|
G_VARIANT_TYPE_STRING => '2.0', |
2027
|
|
|
|
|
|
|
G_VARIANT_TYPE_SIGNATURE => '2.0', |
2028
|
|
|
|
|
|
|
G_VARIANT_TYPE_OBJECT_PATH_ARRAY => '2.0', |
2029
|
|
|
|
|
|
|
G_VARIANT_TYPE_OBJECT_PATH => '2.0', |
2030
|
|
|
|
|
|
|
G_VARIANT_TYPE_MAYBE => '2.0', |
2031
|
|
|
|
|
|
|
G_VARIANT_TYPE_INT64 => '2.0', |
2032
|
|
|
|
|
|
|
G_VARIANT_TYPE_INT32 => '2.0', |
2033
|
|
|
|
|
|
|
G_VARIANT_TYPE_INT16 => '2.0', |
2034
|
|
|
|
|
|
|
G_VARIANT_TYPE_HANDLE => '2.0', |
2035
|
|
|
|
|
|
|
G_VARIANT_TYPE_DOUBLE => '2.0', |
2036
|
|
|
|
|
|
|
G_VARIANT_TYPE_DICT_ENTRY => '2.0', |
2037
|
|
|
|
|
|
|
G_VARIANT_TYPE_DICTIONARY => '2.0', |
2038
|
|
|
|
|
|
|
G_VARIANT_TYPE_BYTESTRING_ARRAY => '2.0', |
2039
|
|
|
|
|
|
|
G_VARIANT_TYPE_BYTESTRING => '2.0', |
2040
|
|
|
|
|
|
|
G_VARIANT_TYPE_BYTE => '2.0', |
2041
|
|
|
|
|
|
|
G_VARIANT_TYPE_BOOLEAN => '2.0', |
2042
|
|
|
|
|
|
|
G_VARIANT_TYPE_BASIC => '2.0', |
2043
|
|
|
|
|
|
|
G_VARIANT_TYPE_ARRAY => '2.0', |
2044
|
|
|
|
|
|
|
G_VARIANT_TYPE_ANY => '2.0', |
2045
|
|
|
|
|
|
|
G_VARIANT_TYPE => '2.0', |
2046
|
|
|
|
|
|
|
G_VARIANT_PARSE_ERROR => '2.0', |
2047
|
|
|
|
|
|
|
G_USEC_PER_SEC => '2.0', |
2048
|
|
|
|
|
|
|
G_URI_RESERVED_CHARS_SUBCOMPONENT_DELIMITERS => '2.0', |
2049
|
|
|
|
|
|
|
G_URI_RESERVED_CHARS_GENERIC_DELIMITERS => '2.0', |
2050
|
|
|
|
|
|
|
G_URI_RESERVED_CHARS_ALLOWED_IN_USERINFO => '2.0', |
2051
|
|
|
|
|
|
|
G_URI_RESERVED_CHARS_ALLOWED_IN_PATH_ELEMENT => '2.0', |
2052
|
|
|
|
|
|
|
G_URI_RESERVED_CHARS_ALLOWED_IN_PATH => '2.0', |
2053
|
|
|
|
|
|
|
G_UNLOCK => '2.0', |
2054
|
|
|
|
|
|
|
G_UNIX_ERROR => '2.0', |
2055
|
|
|
|
|
|
|
G_UNICODE_COMBINING_MARK => '2.0', |
2056
|
|
|
|
|
|
|
G_TRYLOCK => '2.0', |
2057
|
|
|
|
|
|
|
G_THREAD_ERROR => '2.0', |
2058
|
|
|
|
|
|
|
G_THREADS_IMPL_WIN32 => '2.0', |
2059
|
|
|
|
|
|
|
G_THREADS_IMPL_POSIX => '2.0', |
2060
|
|
|
|
|
|
|
G_STR_DELIMITERS => '2.0', |
2061
|
|
|
|
|
|
|
G_STRUCT_OFFSET => '2.0', |
2062
|
|
|
|
|
|
|
G_STRUCT_MEMBER_P => '2.0', |
2063
|
|
|
|
|
|
|
G_STRUCT_MEMBER => '2.0', |
2064
|
|
|
|
|
|
|
G_STRLOC => '2.0', |
2065
|
|
|
|
|
|
|
G_STRINGIFY => '2.0', |
2066
|
|
|
|
|
|
|
G_STMT_START => '2.0', |
2067
|
|
|
|
|
|
|
G_STMT_END => '2.0', |
2068
|
|
|
|
|
|
|
G_STATIC_RW_LOCK_INIT => '2.0', |
2069
|
|
|
|
|
|
|
G_STATIC_REC_MUTEX_INIT => '2.0', |
2070
|
|
|
|
|
|
|
G_STATIC_PRIVATE_INIT => '2.0', |
2071
|
|
|
|
|
|
|
G_STATIC_MUTEX_INIT => '2.0', |
2072
|
|
|
|
|
|
|
G_SQRT2 => '2.0', |
2073
|
|
|
|
|
|
|
G_SPAWN_EXIT_ERROR => '2.0', |
2074
|
|
|
|
|
|
|
G_SPAWN_ERROR => '2.0', |
2075
|
|
|
|
|
|
|
G_SHELL_ERROR => '2.0', |
2076
|
|
|
|
|
|
|
G_SEARCHPATH_SEPARATOR_S => '2.0', |
2077
|
|
|
|
|
|
|
G_SEARCHPATH_SEPARATOR => '2.0', |
2078
|
|
|
|
|
|
|
G_PRIORITY_LOW => '2.0', |
2079
|
|
|
|
|
|
|
G_PRIORITY_HIGH_IDLE => '2.0', |
2080
|
|
|
|
|
|
|
G_PRIORITY_HIGH => '2.0', |
2081
|
|
|
|
|
|
|
G_PRIORITY_DEFAULT_IDLE => '2.0', |
2082
|
|
|
|
|
|
|
G_PRIORITY_DEFAULT => '2.0', |
2083
|
|
|
|
|
|
|
G_POLLFD_FORMAT => '2.0', |
2084
|
|
|
|
|
|
|
G_PI_4 => '2.0', |
2085
|
|
|
|
|
|
|
G_PI_2 => '2.0', |
2086
|
|
|
|
|
|
|
G_PI => '2.0', |
2087
|
|
|
|
|
|
|
G_PDP_ENDIAN => '2.0', |
2088
|
|
|
|
|
|
|
G_OS_WIN32 => '2.0', |
2089
|
|
|
|
|
|
|
G_OS_UNIX => '2.0', |
2090
|
|
|
|
|
|
|
G_OPTION_ERROR => '2.0', |
2091
|
|
|
|
|
|
|
G_N_ELEMENTS => '2.0', |
2092
|
|
|
|
|
|
|
G_NODE_IS_ROOT => '2.0', |
2093
|
|
|
|
|
|
|
G_NODE_IS_LEAF => '2.0', |
2094
|
|
|
|
|
|
|
G_MODULE_SUFFIX => '2.0', |
2095
|
|
|
|
|
|
|
G_MODULE_IMPORT => '2.0', |
2096
|
|
|
|
|
|
|
G_MODULE_EXPORT => '2.0', |
2097
|
|
|
|
|
|
|
G_MINSHORT => '2.0', |
2098
|
|
|
|
|
|
|
G_MINOFFSET => '2.0', |
2099
|
|
|
|
|
|
|
G_MINLONG => '2.0', |
2100
|
|
|
|
|
|
|
G_MININT64 => '2.0', |
2101
|
|
|
|
|
|
|
G_MININT => '2.0', |
2102
|
|
|
|
|
|
|
G_MINFLOAT => '2.0', |
2103
|
|
|
|
|
|
|
G_MINDOUBLE => '2.0', |
2104
|
|
|
|
|
|
|
G_MEM_ALIGN => '2.0', |
2105
|
|
|
|
|
|
|
G_MAXUSHORT => '2.0', |
2106
|
|
|
|
|
|
|
G_MAXULONG => '2.0', |
2107
|
|
|
|
|
|
|
G_MAXUINT64 => '2.0', |
2108
|
|
|
|
|
|
|
G_MAXUINT => '2.0', |
2109
|
|
|
|
|
|
|
G_MAXSHORT => '2.0', |
2110
|
|
|
|
|
|
|
G_MAXOFFSET => '2.0', |
2111
|
|
|
|
|
|
|
G_MAXLONG => '2.0', |
2112
|
|
|
|
|
|
|
G_MAXINT64 => '2.0', |
2113
|
|
|
|
|
|
|
G_MAXINT => '2.0', |
2114
|
|
|
|
|
|
|
G_MAXFLOAT => '2.0', |
2115
|
|
|
|
|
|
|
G_MAXDOUBLE => '2.0', |
2116
|
|
|
|
|
|
|
G_MARKUP_ERROR => '2.0', |
2117
|
|
|
|
|
|
|
G_LOG_LEVEL_USER_SHIFT => '2.0', |
2118
|
|
|
|
|
|
|
G_LOG_FATAL_MASK => '2.0', |
2119
|
|
|
|
|
|
|
G_LOG_DOMAIN => '2.0', |
2120
|
|
|
|
|
|
|
G_LOG_2_BASE_10 => '2.0', |
2121
|
|
|
|
|
|
|
G_LOCK_EXTERN => '2.0', |
2122
|
|
|
|
|
|
|
G_LOCK_DEFINE_STATIC => '2.0', |
2123
|
|
|
|
|
|
|
G_LOCK_DEFINE => '2.0', |
2124
|
|
|
|
|
|
|
G_LOCK => '2.0', |
2125
|
|
|
|
|
|
|
G_LN2 => '2.0', |
2126
|
|
|
|
|
|
|
G_LN10 => '2.0', |
2127
|
|
|
|
|
|
|
G_LITTLE_ENDIAN => '2.0', |
2128
|
|
|
|
|
|
|
G_KEY_FILE_ERROR => '2.0', |
2129
|
|
|
|
|
|
|
G_IO_CHANNEL_ERROR => '2.0', |
2130
|
|
|
|
|
|
|
G_INLINE_FUNC => '2.0', |
2131
|
|
|
|
|
|
|
G_IEEE754_FLOAT_BIAS => '2.0', |
2132
|
|
|
|
|
|
|
G_IEEE754_DOUBLE_BIAS => '2.0', |
2133
|
|
|
|
|
|
|
G_HOOK_IS_VALID => '2.0', |
2134
|
|
|
|
|
|
|
G_HOOK_IS_UNLINKED => '2.0', |
2135
|
|
|
|
|
|
|
G_HOOK_IN_CALL => '2.0', |
2136
|
|
|
|
|
|
|
G_HOOK_FLAG_USER_SHIFT => '2.0', |
2137
|
|
|
|
|
|
|
G_HOOK_FLAGS => '2.0', |
2138
|
|
|
|
|
|
|
G_HOOK_ACTIVE => '2.0', |
2139
|
|
|
|
|
|
|
G_HOOK => '2.0', |
2140
|
|
|
|
|
|
|
G_HAVE_GNUC_VISIBILITY => '2.0', |
2141
|
|
|
|
|
|
|
G_GUINT64_FORMAT => '2.0', |
2142
|
|
|
|
|
|
|
G_GUINT32_FORMAT => '2.0', |
2143
|
|
|
|
|
|
|
G_GUINT16_FORMAT => '2.0', |
2144
|
|
|
|
|
|
|
G_GNUC_UNUSED => '2.0', |
2145
|
|
|
|
|
|
|
G_GNUC_SCANF => '2.0', |
2146
|
|
|
|
|
|
|
G_GNUC_PURE => '2.0', |
2147
|
|
|
|
|
|
|
G_GNUC_PRINTF => '2.0', |
2148
|
|
|
|
|
|
|
G_GNUC_PRETTY_FUNCTION => '2.0', |
2149
|
|
|
|
|
|
|
G_GNUC_NO_INSTRUMENT => '2.0', |
2150
|
|
|
|
|
|
|
G_GNUC_NORETURN => '2.0', |
2151
|
|
|
|
|
|
|
G_GNUC_FUNCTION => '2.0', |
2152
|
|
|
|
|
|
|
G_GNUC_FORMAT => '2.0', |
2153
|
|
|
|
|
|
|
G_GNUC_EXTENSION => '2.0', |
2154
|
|
|
|
|
|
|
G_GNUC_CONST => '2.0', |
2155
|
|
|
|
|
|
|
G_GNUC_CHECK_VERSION => '2.0', |
2156
|
|
|
|
|
|
|
G_GINT64_FORMAT => '2.0', |
2157
|
|
|
|
|
|
|
G_GINT64_CONSTANT => '2.0', |
2158
|
|
|
|
|
|
|
G_GINT32_FORMAT => '2.0', |
2159
|
|
|
|
|
|
|
G_GINT16_FORMAT => '2.0', |
2160
|
|
|
|
|
|
|
G_FILE_ERROR => '2.0', |
2161
|
|
|
|
|
|
|
G_END_DECLS => '2.0', |
2162
|
|
|
|
|
|
|
G_E => '2.0', |
2163
|
|
|
|
|
|
|
G_DIR_SEPARATOR_S => '2.0', |
2164
|
|
|
|
|
|
|
G_DIR_SEPARATOR => '2.0', |
2165
|
|
|
|
|
|
|
G_DATE_BAD_YEAR => '2.0', |
2166
|
|
|
|
|
|
|
G_DATE_BAD_JULIAN => '2.0', |
2167
|
|
|
|
|
|
|
G_DATE_BAD_DAY => '2.0', |
2168
|
|
|
|
|
|
|
G_DATALIST_FLAGS_MASK => '2.0', |
2169
|
|
|
|
|
|
|
G_CSET_a_2_z => '2.0', |
2170
|
|
|
|
|
|
|
G_CSET_LATINS => '2.0', |
2171
|
|
|
|
|
|
|
G_CSET_LATINC => '2.0', |
2172
|
|
|
|
|
|
|
G_CSET_DIGITS => '2.0', |
2173
|
|
|
|
|
|
|
G_CSET_A_2_Z => '2.0', |
2174
|
|
|
|
|
|
|
G_CONVERT_ERROR => '2.0', |
2175
|
|
|
|
|
|
|
G_CONST_RETURN => '2.0', |
2176
|
|
|
|
|
|
|
G_BYTE_ORDER => '2.0', |
2177
|
|
|
|
|
|
|
G_BREAKPOINT => '2.0', |
2178
|
|
|
|
|
|
|
G_BOOKMARK_FILE_ERROR => '2.0', |
2179
|
|
|
|
|
|
|
G_BIG_ENDIAN => '2.0', |
2180
|
|
|
|
|
|
|
G_BEGIN_DECLS => '2.0', |
2181
|
|
|
|
|
|
|
G_ATOMIC_LOCK_FREE => '2.0', |
2182
|
|
|
|
|
|
|
G_ASCII_DTOSTR_BUF_SIZE => '2.0', |
2183
|
|
|
|
|
|
|
GWin32OSType => '2.0', |
2184
|
|
|
|
|
|
|
GVoidFunc => '2.0', |
2185
|
|
|
|
|
|
|
GVariantType => '2.0', |
2186
|
|
|
|
|
|
|
GVariantParseError => '2.0', |
2187
|
|
|
|
|
|
|
GVariantIter => '2.0', |
2188
|
|
|
|
|
|
|
GVariantBuilder => '2.0', |
2189
|
|
|
|
|
|
|
GUserDirectory => '2.0', |
2190
|
|
|
|
|
|
|
GUnixFDSourceFunc => '2.0', |
2191
|
|
|
|
|
|
|
GUnicodeType => '2.0', |
2192
|
|
|
|
|
|
|
GUnicodeScript => '2.0', |
2193
|
|
|
|
|
|
|
GUnicodeBreakType => '2.0', |
2194
|
|
|
|
|
|
|
GULONG_TO_LE => '2.0', |
2195
|
|
|
|
|
|
|
GULONG_TO_BE => '2.0', |
2196
|
|
|
|
|
|
|
GULONG_FROM_LE => '2.0', |
2197
|
|
|
|
|
|
|
GULONG_FROM_BE => '2.0', |
2198
|
|
|
|
|
|
|
GUINT_TO_POINTER => '2.0', |
2199
|
|
|
|
|
|
|
GUINT_TO_LE => '2.0', |
2200
|
|
|
|
|
|
|
GUINT_TO_BE => '2.0', |
2201
|
|
|
|
|
|
|
GUINT_FROM_LE => '2.0', |
2202
|
|
|
|
|
|
|
GUINT_FROM_BE => '2.0', |
2203
|
|
|
|
|
|
|
GUINT64_TO_LE => '2.0', |
2204
|
|
|
|
|
|
|
GUINT64_TO_BE => '2.0', |
2205
|
|
|
|
|
|
|
GUINT64_SWAP_LE_BE => '2.0', |
2206
|
|
|
|
|
|
|
GUINT64_FROM_LE => '2.0', |
2207
|
|
|
|
|
|
|
GUINT64_FROM_BE => '2.0', |
2208
|
|
|
|
|
|
|
GUINT32_TO_LE => '2.0', |
2209
|
|
|
|
|
|
|
GUINT32_TO_BE => '2.0', |
2210
|
|
|
|
|
|
|
GUINT32_SWAP_LE_PDP => '2.0', |
2211
|
|
|
|
|
|
|
GUINT32_SWAP_LE_BE => '2.0', |
2212
|
|
|
|
|
|
|
GUINT32_SWAP_BE_PDP => '2.0', |
2213
|
|
|
|
|
|
|
GUINT32_FROM_LE => '2.0', |
2214
|
|
|
|
|
|
|
GUINT32_FROM_BE => '2.0', |
2215
|
|
|
|
|
|
|
GUINT16_TO_LE => '2.0', |
2216
|
|
|
|
|
|
|
GUINT16_TO_BE => '2.0', |
2217
|
|
|
|
|
|
|
GUINT16_SWAP_LE_PDP => '2.0', |
2218
|
|
|
|
|
|
|
GUINT16_SWAP_LE_BE => '2.0', |
2219
|
|
|
|
|
|
|
GUINT16_SWAP_BE_PDP => '2.0', |
2220
|
|
|
|
|
|
|
GUINT16_FROM_LE => '2.0', |
2221
|
|
|
|
|
|
|
GUINT16_FROM_BE => '2.0', |
2222
|
|
|
|
|
|
|
GTuples => '2.0', |
2223
|
|
|
|
|
|
|
GTree => '2.0', |
2224
|
|
|
|
|
|
|
GTraverseType => '2.0', |
2225
|
|
|
|
|
|
|
GTraverseFunc => '2.0', |
2226
|
|
|
|
|
|
|
GTraverseFlags => '2.0', |
2227
|
|
|
|
|
|
|
GTrashStack => '2.0', |
2228
|
|
|
|
|
|
|
GTranslateFunc => '2.0', |
2229
|
|
|
|
|
|
|
GTokenValue => '2.0', |
2230
|
|
|
|
|
|
|
GTokenType => '2.0', |
2231
|
|
|
|
|
|
|
GTimer => '2.0', |
2232
|
|
|
|
|
|
|
GTimeVal => '2.0', |
2233
|
|
|
|
|
|
|
GTimeType => '2.0', |
2234
|
|
|
|
|
|
|
GTime => '2.0', |
2235
|
|
|
|
|
|
|
GThreadPriority => '2.0', |
2236
|
|
|
|
|
|
|
GThreadPool => '2.0', |
2237
|
|
|
|
|
|
|
GThreadFunc => '2.0', |
2238
|
|
|
|
|
|
|
GThreadError => '2.0', |
2239
|
|
|
|
|
|
|
GThread => '2.0', |
2240
|
|
|
|
|
|
|
GTestTrapFlags => '2.0', |
2241
|
|
|
|
|
|
|
GTestSuite => '2.0', |
2242
|
|
|
|
|
|
|
GTestSubprocessFlags => '2.0', |
2243
|
|
|
|
|
|
|
GTestCase => '2.0', |
2244
|
|
|
|
|
|
|
GStrv => '2.0', |
2245
|
|
|
|
|
|
|
GStringChunk => '2.0', |
2246
|
|
|
|
|
|
|
GString => '2.0', |
2247
|
|
|
|
|
|
|
GStaticRecMutex => '2.0', |
2248
|
|
|
|
|
|
|
GStaticRWLock => '2.0', |
2249
|
|
|
|
|
|
|
GStaticPrivate => '2.0', |
2250
|
|
|
|
|
|
|
GStaticMutex => '2.0', |
2251
|
|
|
|
|
|
|
GStatBuf => '2.0', |
2252
|
|
|
|
|
|
|
GSpawnFlags => '2.0', |
2253
|
|
|
|
|
|
|
GSpawnError => '2.0', |
2254
|
|
|
|
|
|
|
GSpawnChildSetupFunc => '2.0', |
2255
|
|
|
|
|
|
|
GSourceFuncs => '2.0', |
2256
|
|
|
|
|
|
|
GSourceFunc => '2.0', |
2257
|
|
|
|
|
|
|
GSourceDummyMarshal => '2.0', |
2258
|
|
|
|
|
|
|
GSourceCallbackFuncs => '2.0', |
2259
|
|
|
|
|
|
|
GSource => '2.0', |
2260
|
|
|
|
|
|
|
GShellError => '2.0', |
2261
|
|
|
|
|
|
|
GSequenceIterCompareFunc => '2.0', |
2262
|
|
|
|
|
|
|
GSequenceIter => '2.0', |
2263
|
|
|
|
|
|
|
GSequence => '2.0', |
2264
|
|
|
|
|
|
|
GSeekType => '2.0', |
2265
|
|
|
|
|
|
|
GScannerMsgFunc => '2.0', |
2266
|
|
|
|
|
|
|
GScannerConfig => '2.0', |
2267
|
|
|
|
|
|
|
GScanner => '2.0', |
2268
|
|
|
|
|
|
|
GSSIZE_TO_LE => '2.0', |
2269
|
|
|
|
|
|
|
GSSIZE_TO_BE => '2.0', |
2270
|
|
|
|
|
|
|
GSSIZE_FROM_LE => '2.0', |
2271
|
|
|
|
|
|
|
GSSIZE_FROM_BE => '2.0', |
2272
|
|
|
|
|
|
|
GSList => '2.0', |
2273
|
|
|
|
|
|
|
GSIZE_TO_POINTER => '2.0', |
2274
|
|
|
|
|
|
|
GSIZE_TO_LE => '2.0', |
2275
|
|
|
|
|
|
|
GSIZE_TO_BE => '2.0', |
2276
|
|
|
|
|
|
|
GSIZE_FROM_LE => '2.0', |
2277
|
|
|
|
|
|
|
GSIZE_FROM_BE => '2.0', |
2278
|
|
|
|
|
|
|
GRelation => '2.0', |
2279
|
|
|
|
|
|
|
GRand => '2.0', |
2280
|
|
|
|
|
|
|
GQueue => '2.0', |
2281
|
|
|
|
|
|
|
GQuark => '2.0', |
2282
|
|
|
|
|
|
|
GPtrArray => '2.0', |
2283
|
|
|
|
|
|
|
GPrivate => '2.0', |
2284
|
|
|
|
|
|
|
GPrintFunc => '2.0', |
2285
|
|
|
|
|
|
|
GPollFunc => '2.0', |
2286
|
|
|
|
|
|
|
GPollFD => '2.0', |
2287
|
|
|
|
|
|
|
GPid => '2.0', |
2288
|
|
|
|
|
|
|
GPatternSpec => '2.0', |
2289
|
|
|
|
|
|
|
GPOINTER_TO_UINT => '2.0', |
2290
|
|
|
|
|
|
|
GPOINTER_TO_SIZE => '2.0', |
2291
|
|
|
|
|
|
|
GPOINTER_TO_INT => '2.0', |
2292
|
|
|
|
|
|
|
GOptionParseFunc => '2.0', |
2293
|
|
|
|
|
|
|
GOptionGroup => '2.0', |
2294
|
|
|
|
|
|
|
GOptionFlags => '2.0', |
2295
|
|
|
|
|
|
|
GOptionErrorFunc => '2.0', |
2296
|
|
|
|
|
|
|
GOptionError => '2.0', |
2297
|
|
|
|
|
|
|
GOptionEntry => '2.0', |
2298
|
|
|
|
|
|
|
GOptionContext => '2.0', |
2299
|
|
|
|
|
|
|
GOptionArgFunc => '2.0', |
2300
|
|
|
|
|
|
|
GOptionArg => '2.0', |
2301
|
|
|
|
|
|
|
GNormalizeMode => '2.0', |
2302
|
|
|
|
|
|
|
GNodeTraverseFunc => '2.0', |
2303
|
|
|
|
|
|
|
GNodeForeachFunc => '2.0', |
2304
|
|
|
|
|
|
|
GNode => '2.0', |
2305
|
|
|
|
|
|
|
GMutex => '2.0', |
2306
|
|
|
|
|
|
|
GModuleUnload => '2.0', |
2307
|
|
|
|
|
|
|
GModuleFlags => '2.0', |
2308
|
|
|
|
|
|
|
GModuleCheckInit => '2.0', |
2309
|
|
|
|
|
|
|
GModule => '2.0', |
2310
|
|
|
|
|
|
|
GMemVTable => '2.0', |
2311
|
|
|
|
|
|
|
GMatchInfo => '2.0', |
2312
|
|
|
|
|
|
|
GMarkupParser => '2.0', |
2313
|
|
|
|
|
|
|
GMarkupParseFlags => '2.0', |
2314
|
|
|
|
|
|
|
GMarkupParseContext => '2.0', |
2315
|
|
|
|
|
|
|
GMarkupError => '2.0', |
2316
|
|
|
|
|
|
|
GMarkupCollectType => '2.0', |
2317
|
|
|
|
|
|
|
GMappedFile => '2.0', |
2318
|
|
|
|
|
|
|
GMainLoop => '2.0', |
2319
|
|
|
|
|
|
|
GMainContext => '2.0', |
2320
|
|
|
|
|
|
|
GLogLevelFlags => '2.0', |
2321
|
|
|
|
|
|
|
GLogFunc => '2.0', |
2322
|
|
|
|
|
|
|
GList => '2.0', |
2323
|
|
|
|
|
|
|
GLONG_TO_LE => '2.0', |
2324
|
|
|
|
|
|
|
GLONG_TO_BE => '2.0', |
2325
|
|
|
|
|
|
|
GLONG_FROM_LE => '2.0', |
2326
|
|
|
|
|
|
|
GLONG_FROM_BE => '2.0', |
2327
|
|
|
|
|
|
|
GLIB_MINOR_VERSION => '2.0', |
2328
|
|
|
|
|
|
|
GLIB_MICRO_VERSION => '2.0', |
2329
|
|
|
|
|
|
|
GLIB_MAJOR_VERSION => '2.0', |
2330
|
|
|
|
|
|
|
GLIB_DISABLE_DEPRECATION_WARNINGS => '2.0', |
2331
|
|
|
|
|
|
|
GLIB_CHECK_VERSION => '2.0', |
2332
|
|
|
|
|
|
|
GKeyFileFlags => '2.0', |
2333
|
|
|
|
|
|
|
GKeyFileError => '2.0', |
2334
|
|
|
|
|
|
|
GKeyFile => '2.0', |
2335
|
|
|
|
|
|
|
GIOStatus => '2.0', |
2336
|
|
|
|
|
|
|
GIOFuncs => '2.0', |
2337
|
|
|
|
|
|
|
GIOFunc => '2.0', |
2338
|
|
|
|
|
|
|
GIOFlags => '2.0', |
2339
|
|
|
|
|
|
|
GIOError => '2.0', |
2340
|
|
|
|
|
|
|
GIOCondition => '2.0', |
2341
|
|
|
|
|
|
|
GIOChannelError => '2.0', |
2342
|
|
|
|
|
|
|
GIOChannel => '2.0', |
2343
|
|
|
|
|
|
|
GINT_TO_POINTER => '2.0', |
2344
|
|
|
|
|
|
|
GINT_TO_LE => '2.0', |
2345
|
|
|
|
|
|
|
GINT_TO_BE => '2.0', |
2346
|
|
|
|
|
|
|
GINT_FROM_LE => '2.0', |
2347
|
|
|
|
|
|
|
GINT_FROM_BE => '2.0', |
2348
|
|
|
|
|
|
|
GINT64_TO_LE => '2.0', |
2349
|
|
|
|
|
|
|
GINT64_TO_BE => '2.0', |
2350
|
|
|
|
|
|
|
GINT64_FROM_LE => '2.0', |
2351
|
|
|
|
|
|
|
GINT64_FROM_BE => '2.0', |
2352
|
|
|
|
|
|
|
GINT32_TO_LE => '2.0', |
2353
|
|
|
|
|
|
|
GINT32_TO_BE => '2.0', |
2354
|
|
|
|
|
|
|
GINT32_FROM_LE => '2.0', |
2355
|
|
|
|
|
|
|
GINT32_FROM_BE => '2.0', |
2356
|
|
|
|
|
|
|
GINT16_TO_LE => '2.0', |
2357
|
|
|
|
|
|
|
GINT16_TO_BE => '2.0', |
2358
|
|
|
|
|
|
|
GINT16_FROM_LE => '2.0', |
2359
|
|
|
|
|
|
|
GINT16_FROM_BE => '2.0', |
2360
|
|
|
|
|
|
|
GIConv => '2.0', |
2361
|
|
|
|
|
|
|
GHookMarshaller => '2.0', |
2362
|
|
|
|
|
|
|
GHookList => '2.0', |
2363
|
|
|
|
|
|
|
GHookFunc => '2.0', |
2364
|
|
|
|
|
|
|
GHookFlagMask => '2.0', |
2365
|
|
|
|
|
|
|
GHookFindFunc => '2.0', |
2366
|
|
|
|
|
|
|
GHookFinalizeFunc => '2.0', |
2367
|
|
|
|
|
|
|
GHookCompareFunc => '2.0', |
2368
|
|
|
|
|
|
|
GHookCheckMarshaller => '2.0', |
2369
|
|
|
|
|
|
|
GHookCheckFunc => '2.0', |
2370
|
|
|
|
|
|
|
GHook => '2.0', |
2371
|
|
|
|
|
|
|
GHashTableIter => '2.0', |
2372
|
|
|
|
|
|
|
GHashTable => '2.0', |
2373
|
|
|
|
|
|
|
GHashFunc => '2.0', |
2374
|
|
|
|
|
|
|
GHRFunc => '2.0', |
2375
|
|
|
|
|
|
|
GHFunc => '2.0', |
2376
|
|
|
|
|
|
|
GFunc => '2.0', |
2377
|
|
|
|
|
|
|
GFreeFunc => '2.0', |
2378
|
|
|
|
|
|
|
GFormatSizeFlags => '2.0', |
2379
|
|
|
|
|
|
|
GFloatIEEE754 => '2.0', |
2380
|
|
|
|
|
|
|
GFileTest => '2.0', |
2381
|
|
|
|
|
|
|
GFileError => '2.0', |
2382
|
|
|
|
|
|
|
GErrorType => '2.0', |
2383
|
|
|
|
|
|
|
GError => '2.0', |
2384
|
|
|
|
|
|
|
GEqualFunc => '2.0', |
2385
|
|
|
|
|
|
|
GDuplicateFunc => '2.0', |
2386
|
|
|
|
|
|
|
GDoubleIEEE754 => '2.0', |
2387
|
|
|
|
|
|
|
GDir => '2.0', |
2388
|
|
|
|
|
|
|
GDestroyNotify => '2.0', |
2389
|
|
|
|
|
|
|
GDebugKey => '2.0', |
2390
|
|
|
|
|
|
|
GDateYear => '2.0', |
2391
|
|
|
|
|
|
|
GDateWeekday => '2.0', |
2392
|
|
|
|
|
|
|
GDateTime => '2.0', |
2393
|
|
|
|
|
|
|
GDateMonth => '2.0', |
2394
|
|
|
|
|
|
|
GDateDay => '2.0', |
2395
|
|
|
|
|
|
|
GDateDMY => '2.0', |
2396
|
|
|
|
|
|
|
GDate => '2.0', |
2397
|
|
|
|
|
|
|
GDataForeachFunc => '2.0', |
2398
|
|
|
|
|
|
|
GData => '2.0', |
2399
|
|
|
|
|
|
|
GConvertError => '2.0', |
2400
|
|
|
|
|
|
|
GCond => '2.0', |
2401
|
|
|
|
|
|
|
GCompletionStrncmpFunc => '2.0', |
2402
|
|
|
|
|
|
|
GCompletionFunc => '2.0', |
2403
|
|
|
|
|
|
|
GCompletion => '2.0', |
2404
|
|
|
|
|
|
|
GCompareFunc => '2.0', |
2405
|
|
|
|
|
|
|
GCompareDataFunc => '2.0', |
2406
|
|
|
|
|
|
|
GChildWatchFunc => '2.0', |
2407
|
|
|
|
|
|
|
GCacheNewFunc => '2.0', |
2408
|
|
|
|
|
|
|
GCacheDupFunc => '2.0', |
2409
|
|
|
|
|
|
|
GCacheDestroyFunc => '2.0', |
2410
|
|
|
|
|
|
|
GCache => '2.0', |
2411
|
|
|
|
|
|
|
GByteArray => '2.0', |
2412
|
|
|
|
|
|
|
GBookmarkFileError => '2.0', |
2413
|
|
|
|
|
|
|
GBookmarkFile => '2.0', |
2414
|
|
|
|
|
|
|
GAsyncQueue => '2.0', |
2415
|
|
|
|
|
|
|
GArray => '2.0', |
2416
|
|
|
|
|
|
|
FALSE => '2.0', |
2417
|
|
|
|
|
|
|
CLAMP => '2.0', |
2418
|
|
|
|
|
|
|
ABS => '2.0', |
2419
|
|
|
|
|
|
|
) |
2420
|
|
|
|
|
|
|
; |
2421
|
|
|
|
|
|
|
|
2422
|
|
|
|
|
|
|
1; |
2423
|
|
|
|
|
|
|
__END__ |