Jun 29 13:36:39 2001 Owen Taylor <otaylor@redhat.com>
[platform/upstream/glib.git] / docs / reference / glib / tmpl / glib-unused.sgml
1 <!-- ##### ENUM GChannelError ##### -->
2 <para>
3
4 </para>
5
6 @G_CHANNEL_ERROR_ACCES: 
7 @G_CHANNEL_ERROR_BADF: 
8 @G_CHANNEL_ERROR_DEADLK: 
9 @G_CHANNEL_ERROR_FAULT: 
10 @G_CHANNEL_ERROR_INVAL: 
11 @G_CHANNEL_ERROR_IO: 
12 @G_CHANNEL_ERROR_ISDIR: 
13 @G_CHANNEL_ERROR_MFILE: 
14 @G_CHANNEL_ERROR_NOLCK: 
15 @G_CHANNEL_ERROR_NOSPC: 
16 @G_CHANNEL_ERROR_PERM: 
17 @G_CHANNEL_ERROR_PIPE: 
18 @G_CHANNEL_ERROR_SPIPE: 
19 @G_CHANNEL_ERROR_ENCODE_RW: 
20 @G_CHANNEL_ERROR_FAILED: 
21
22 <!-- ##### ENUM GChannelStatus ##### -->
23 <para>
24
25 </para>
26
27 @G_CHANNEL_STATUS_NORMAL: 
28 @G_CHANNEL_STATUS_EOF: 
29 @G_CHANNEL_STATUS_PARTIAL_CHARS: 
30 @G_CHANNEL_STATUS_AGAIN: 
31 @G_CHANNEL_STATUS_INTR: 
32 @G_CHANNEL_STATUS_ERROR: 
33 @G_CHANNEL_STATUS_BAD_INPUT: 
34
35 <!-- ##### USER_FUNCTION GCompareFuncData ##### -->
36 <para>
37
38 </para>
39
40 @a: 
41 @b: 
42 @user_data: 
43 @Returns: 
44
45 <!-- ##### USER_FUNCTION GCompletionStrcmpFunc ##### -->
46 <para>
47
48 </para>
49
50 @s1: 
51 @s2: 
52 @Returns: 
53
54 <!-- ##### USER_FUNCTION GHookFreeFunc ##### -->
55 <para>
56
57 </para>
58
59 @hook_list: 
60 @hook: 
61
62 <!-- ##### MACRO G_CHANNEL_ERROR ##### -->
63 <para>
64
65 </para>
66
67
68 <!-- ##### MACRO G_HOOK_DEFERRED_DESTROY ##### -->
69 <para>
70
71 </para>
72
73
74 <!-- ##### MACRO G_IO_CHANNEL_DEFAULT_LINE_TERM ##### -->
75 <para>
76 One of %G_IO_CHANNEL_UNIX_LINE_TERM, %G_IO_CHANNEL_DOS_LINE_TERM,
77 or %G_IO_CHANNEL_MACINTOSH_LINE_TERM (unimplemented)
78 depending on the system type.
79 </para>
80
81
82 <!-- ##### MACRO access ##### -->
83 <para>
84
85 </para>
86
87
88 <!-- ##### MACRO close ##### -->
89 <para>
90
91 </para>
92
93
94 <!-- ##### MACRO fdopen ##### -->
95 <para>
96
97 </para>
98
99
100 <!-- ##### FUNCTION g_convert_error_quark ##### -->
101 <para>
102
103 </para>
104
105 @Returns: 
106
107 <!-- ##### FUNCTION g_main_add_poll ##### -->
108 <para>
109 Adds a file descriptor to be polled.
110 This is usually combined with g_source_add() to add an event source.
111 The event source's check function will typically test the revents
112 field in the #GPollFD struct and return TRUE if events need to be processed.
113 </para>
114
115 @fd: a #GPollFD, which is a file descriptor together with a bitwise
116 combination of #GIOCondition flags determining which events to poll for.
117 @priority: the priority of the poll, which should be the same as the priority
118 used for g_source_add() to ensure that the file descriptor is polled whenever
119 the results may be needed.
120 See #G_PRIORITY_DEFAULT, #G_PRIORITY_DEFAULT_IDLE, #G_PRIORITY_HIGH,
121 #G_PRIORITY_HIGH_IDLE, and #G_PRIORITY_LOW.
122
123 <!-- ##### FUNCTION g_main_loop_destroy ##### -->
124 <para>
125
126 </para>
127
128 @loop: 
129
130 <!-- ##### FUNCTION g_main_remove_poll ##### -->
131 <para>
132 Removes a file descriptor from the list being polled.
133 </para>
134
135 @fd: the #GPollFD to remove.
136
137 <!-- ##### FUNCTION g_main_win32_get_poll_func ##### -->
138 <para>
139
140 </para>
141
142 @Returns: 
143
144 <!-- ##### FUNCTION g_mem_check ##### -->
145 <para>
146 Checks if the given memory has already been freed. If it has it outputs
147 a warning message.
148 To use this function you must configure glib with the flag
149 '--enable-mem-check=yes' before compiling.
150 </para>
151
152 @mem: the memory to check.
153
154 <!-- ##### FUNCTION g_source_add ##### -->
155 <para>
156 </para>
157
158 @priority: 
159 @can_recurse: 
160 @funcs: 
161 @source_data: 
162 @user_data: 
163 @notify: 
164 @Returns: 
165 @source: 
166 @context: 
167
168 <!-- ##### FUNCTION g_source_connect ##### -->
169 <para>
170
171 </para>
172
173 @source: 
174 @func: 
175 @data: 
176 @notify: 
177
178 <!-- ##### FUNCTION g_source_connect_indirect ##### -->
179 <para>
180
181 </para>
182
183 @source: 
184 @callback_data: 
185 @callback_funcs: 
186
187 <!-- ##### FUNCTION g_source_remove_by_source_data ##### -->
188 <para>
189 Removes the first event source found with the given source data.
190 </para>
191 <para>
192 Event sources are sorted with the highest priority first. Sources with equal
193 priority are stored in the order in which they were added.
194 </para>
195
196 @source_data: the source data, which contains information specific to the
197 type of source.
198 @Returns: TRUE if an event source was found and removed.
199
200 <!-- ##### FUNCTION g_static_private_get_for_thread ##### -->
201 <para>
202
203 </para>
204
205 @private_key: 
206 @thread: 
207 @Returns: 
208
209 <!-- ##### FUNCTION g_static_private_set_for_thread ##### -->
210 <para>
211
212 </para>
213
214 @private_key: 
215 @thread: 
216 @data: 
217 @notify: 
218
219 <!-- ##### MACRO g_string ##### -->
220 <para>
221 Turns the argument into a string literal by using the '#' stringizing operator.
222 </para>
223
224 @x: text to convert to a literal string.
225
226 <!-- ##### MACRO getcwd ##### -->
227 <para>
228
229 </para>
230
231
232 <!-- ##### MACRO getpid ##### -->
233 <para>
234
235 </para>
236
237
238 <!-- ##### MACRO lseek ##### -->
239 <para>
240
241 </para>
242
243
244 <!-- ##### MACRO open ##### -->
245 <para>
246
247 </para>
248
249
250 <!-- ##### MACRO pclose ##### -->
251 <para>
252
253 </para>
254
255
256 <!-- ##### MACRO popen ##### -->
257 <para>
258
259 </para>
260
261
262 <!-- ##### MACRO read ##### -->
263 <para>
264
265 </para>
266
267
268 <!-- ##### MACRO write ##### -->
269 <para>
270
271 </para>
272
273