Bug 621213 – GDBusProxy and well-known names
[platform/upstream/glib.git] / gio / gioenums.h
1 /* GIO - GLib Input, Output and Streaming Library
2  *
3  * Copyright (C) 2006-2007 Red Hat, Inc.
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General
16  * Public License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
18  * Boston, MA 02111-1307, USA.
19  *
20  * Author: Alexander Larsson <alexl@redhat.com>
21  */
22
23 #if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION)
24 #error "Only <gio/gio.h> can be included directly."
25 #endif
26
27 #ifndef __GIO_ENUMS_H__
28 #define __GIO_ENUMS_H__
29
30 #include <glib-object.h>
31
32 G_BEGIN_DECLS
33
34
35 /**
36  * GAppInfoCreateFlags:
37  * @G_APP_INFO_CREATE_NONE: No flags.
38  * @G_APP_INFO_CREATE_NEEDS_TERMINAL: Application opens in a terminal window.
39  * @G_APP_INFO_CREATE_SUPPORTS_URIS: Application supports URI arguments.
40  *
41  * Flags used when creating a #GAppInfo.
42  */
43 typedef enum {
44   G_APP_INFO_CREATE_NONE           = 0,         /*< nick=none >*/
45   G_APP_INFO_CREATE_NEEDS_TERMINAL = (1 << 0),  /*< nick=needs-terminal >*/
46   G_APP_INFO_CREATE_SUPPORTS_URIS  = (1 << 1)   /*< nick=supports-uris >*/
47 } GAppInfoCreateFlags;
48
49 /**
50  * GConverterFlags:
51  * @G_CONVERTER_NO_FLAGS: No flags.
52  * @G_CONVERTER_INPUT_AT_END: At end of input data
53  * @G_CONVERTER_FLUSH: Flush data
54  *
55  * Flags used when calling a g_converter_convert().
56  *
57  * Since: 2.24
58  */
59 typedef enum {
60   G_CONVERTER_NO_FLAGS     = 0,         /*< nick=none >*/
61   G_CONVERTER_INPUT_AT_END = (1 << 0),  /*< nick=input-at-end >*/
62   G_CONVERTER_FLUSH        = (1 << 1)   /*< nick=flush >*/
63 } GConverterFlags;
64
65 /**
66  * GConverterResult:
67  * @G_CONVERTER_ERROR: There was an error during conversion.
68  * @G_CONVERTER_CONVERTED: Some data was consumed or produced
69  * @G_CONVERTER_FINISHED: The conversion is finished
70  * @G_CONVERTER_FLUSHED: Flushing is finished
71  *
72  * Results returned from g_converter_convert().
73  *
74  * Since: 2.24
75  */
76 typedef enum {
77   G_CONVERTER_ERROR     = 0,  /*< nick=error >*/
78   G_CONVERTER_CONVERTED = 1,  /*< nick=converted >*/
79   G_CONVERTER_FINISHED  = 2,  /*< nick=finished >*/
80   G_CONVERTER_FLUSHED   = 3   /*< nick=flushed >*/
81 } GConverterResult;
82
83
84 /**
85  * GDataStreamByteOrder:
86  * @G_DATA_STREAM_BYTE_ORDER_BIG_ENDIAN: Selects Big Endian byte order.
87  * @G_DATA_STREAM_BYTE_ORDER_LITTLE_ENDIAN: Selects Little Endian byte order.
88  * @G_DATA_STREAM_BYTE_ORDER_HOST_ENDIAN: Selects endianness based on host machine's architecture.
89  *
90  * #GDataStreamByteOrder is used to ensure proper endianness of streaming data sources
91  * across various machine architectures.
92  *
93  **/
94 typedef enum {
95   G_DATA_STREAM_BYTE_ORDER_BIG_ENDIAN,
96   G_DATA_STREAM_BYTE_ORDER_LITTLE_ENDIAN,
97   G_DATA_STREAM_BYTE_ORDER_HOST_ENDIAN
98 } GDataStreamByteOrder;
99
100
101 /**
102  * GDataStreamNewlineType:
103  * @G_DATA_STREAM_NEWLINE_TYPE_LF: Selects "LF" line endings, common on most modern UNIX platforms.
104  * @G_DATA_STREAM_NEWLINE_TYPE_CR: Selects "CR" line endings.
105  * @G_DATA_STREAM_NEWLINE_TYPE_CR_LF: Selects "CR, LF" line ending, common on Microsoft Windows.
106  * @G_DATA_STREAM_NEWLINE_TYPE_ANY: Automatically try to handle any line ending type.
107  *
108  * #GDataStreamNewlineType is used when checking for or setting the line endings for a given file.
109  **/
110 typedef enum {
111   G_DATA_STREAM_NEWLINE_TYPE_LF,
112   G_DATA_STREAM_NEWLINE_TYPE_CR,
113   G_DATA_STREAM_NEWLINE_TYPE_CR_LF,
114   G_DATA_STREAM_NEWLINE_TYPE_ANY
115 } GDataStreamNewlineType;
116
117
118 /**
119  * GFileAttributeType:
120  * @G_FILE_ATTRIBUTE_TYPE_INVALID: indicates an invalid or uninitalized type.
121  * @G_FILE_ATTRIBUTE_TYPE_STRING: a null terminated UTF8 string.
122  * @G_FILE_ATTRIBUTE_TYPE_BYTE_STRING: a zero terminated string of non-zero bytes.
123  * @G_FILE_ATTRIBUTE_TYPE_BOOLEAN: a boolean value.
124  * @G_FILE_ATTRIBUTE_TYPE_UINT32: an unsigned 4-byte/32-bit integer.
125  * @G_FILE_ATTRIBUTE_TYPE_INT32: a signed 4-byte/32-bit integer.
126  * @G_FILE_ATTRIBUTE_TYPE_UINT64: an unsigned 8-byte/64-bit integer.
127  * @G_FILE_ATTRIBUTE_TYPE_INT64: a signed 8-byte/64-bit integer.
128  * @G_FILE_ATTRIBUTE_TYPE_OBJECT: a #GObject.
129  * @G_FILE_ATTRIBUTE_TYPE_STRINGV: a %NULL terminated char **. Since 2.22
130  *
131  * The data types for file attributes.
132  **/
133 typedef enum {
134   G_FILE_ATTRIBUTE_TYPE_INVALID = 0,
135   G_FILE_ATTRIBUTE_TYPE_STRING,
136   G_FILE_ATTRIBUTE_TYPE_BYTE_STRING, /* zero terminated string of non-zero bytes */
137   G_FILE_ATTRIBUTE_TYPE_BOOLEAN,
138   G_FILE_ATTRIBUTE_TYPE_UINT32,
139   G_FILE_ATTRIBUTE_TYPE_INT32,
140   G_FILE_ATTRIBUTE_TYPE_UINT64,
141   G_FILE_ATTRIBUTE_TYPE_INT64,
142   G_FILE_ATTRIBUTE_TYPE_OBJECT,
143   G_FILE_ATTRIBUTE_TYPE_STRINGV
144 } GFileAttributeType;
145
146
147 /**
148  * GFileAttributeInfoFlags:
149  * @G_FILE_ATTRIBUTE_INFO_NONE: no flags set.
150  * @G_FILE_ATTRIBUTE_INFO_COPY_WITH_FILE: copy the attribute values when the file is copied.
151  * @G_FILE_ATTRIBUTE_INFO_COPY_WHEN_MOVED: copy the attribute values when the file is moved.
152  *
153  * Flags specifying the behaviour of an attribute.
154  **/
155 typedef enum {
156   G_FILE_ATTRIBUTE_INFO_NONE            = 0,
157   G_FILE_ATTRIBUTE_INFO_COPY_WITH_FILE  = (1 << 0),
158   G_FILE_ATTRIBUTE_INFO_COPY_WHEN_MOVED = (1 << 1)
159 } GFileAttributeInfoFlags;
160
161
162 /**
163  * GFileAttributeStatus:
164  * @G_FILE_ATTRIBUTE_STATUS_UNSET: Attribute value is unset (empty).
165  * @G_FILE_ATTRIBUTE_STATUS_SET: Attribute value is set.
166  * @G_FILE_ATTRIBUTE_STATUS_ERROR_SETTING: Indicates an error in setting the value.
167  *
168  * Used by g_file_set_attributes_from_info() when setting file attributes.
169  **/
170 typedef enum {
171   G_FILE_ATTRIBUTE_STATUS_UNSET = 0,
172   G_FILE_ATTRIBUTE_STATUS_SET,
173   G_FILE_ATTRIBUTE_STATUS_ERROR_SETTING
174 } GFileAttributeStatus;
175
176
177 /**
178  * GFileQueryInfoFlags:
179  * @G_FILE_QUERY_INFO_NONE: No flags set.
180  * @G_FILE_QUERY_INFO_NOFOLLOW_SYMLINKS: Don't follow symlinks.
181  *
182  * Flags used when querying a #GFileInfo.
183  */
184 typedef enum {
185   G_FILE_QUERY_INFO_NONE              = 0,
186   G_FILE_QUERY_INFO_NOFOLLOW_SYMLINKS = (1 << 0)   /*< nick=nofollow-symlinks >*/
187 } GFileQueryInfoFlags;
188
189
190 /**
191  * GFileCreateFlags:
192  * @G_FILE_CREATE_NONE: No flags set.
193  * @G_FILE_CREATE_PRIVATE: Create a file that can only be
194  *    accessed by the current user.
195  * @G_FILE_CREATE_REPLACE_DESTINATION: Replace the destination
196  *    as if it didn't exist before. Don't try to keep any old
197  *    permissions, replace instead of following links. This
198  *    is generally useful if you're doing a "copy over"
199  *    rather than a "save new version of" replace operation.
200  *    You can think of it as "unlink destination" before
201  *    writing to it, although the implementation may not
202  *    be exactly like that. Since 2.20
203  *
204  * Flags used when an operation may create a file.
205  */
206 typedef enum {
207   G_FILE_CREATE_NONE    = 0,
208   G_FILE_CREATE_PRIVATE = (1 << 0),
209   G_FILE_CREATE_REPLACE_DESTINATION = (1 << 1)
210 } GFileCreateFlags;
211
212
213 /**
214  * GMountMountFlags:
215  * @G_MOUNT_MOUNT_NONE: No flags set.
216  *
217  * Flags used when mounting a mount.
218  */
219 typedef enum {
220   G_MOUNT_MOUNT_NONE = 0
221 } GMountMountFlags;
222
223
224 /**
225  * GMountUnmountFlags:
226  * @G_MOUNT_UNMOUNT_NONE: No flags set.
227  * @G_MOUNT_UNMOUNT_FORCE: Unmount even if there are outstanding
228  *  file operations on the mount.
229  *
230  * Flags used when an unmounting a mount.
231  */
232 typedef enum {
233   G_MOUNT_UNMOUNT_NONE  = 0,
234   G_MOUNT_UNMOUNT_FORCE = (1 << 0)
235 } GMountUnmountFlags;
236
237 /**
238  * GDriveStartFlags:
239  * @G_DRIVE_START_NONE: No flags set.
240  *
241  * Flags used when starting a drive.
242  *
243  * Since: 2.22
244  */
245 typedef enum {
246   G_DRIVE_START_NONE = 0
247 } GDriveStartFlags;
248
249 /**
250  * GDriveStartStopType:
251  * @G_DRIVE_START_STOP_TYPE_UNKNOWN: Unknown or drive doesn't support
252  *    start/stop.
253  * @G_DRIVE_START_STOP_TYPE_SHUTDOWN: The stop method will physically
254  *    shut down the drive and e.g. power down the port the drive is
255  *    attached to.
256  * @G_DRIVE_START_STOP_TYPE_NETWORK: The start/stop methods are used
257  *    for connecting/disconnect to the drive over the network.
258  * @G_DRIVE_START_STOP_TYPE_MULTIDISK: The start/stop methods will
259  *    assemble/disassemble a virtual drive from several physical
260  *    drives.
261  * @G_DRIVE_START_STOP_TYPE_PASSWORD: The start/stop methods will
262  *    unlock/lock the disk (for example using the ATA <quote>SECURITY
263  *    UNLOCK DEVICE</quote> command)
264  *
265  * Enumeration describing how a drive can be started/stopped.
266  *
267  * Since: 2.22
268  */
269 typedef enum {
270   G_DRIVE_START_STOP_TYPE_UNKNOWN,
271   G_DRIVE_START_STOP_TYPE_SHUTDOWN,
272   G_DRIVE_START_STOP_TYPE_NETWORK,
273   G_DRIVE_START_STOP_TYPE_MULTIDISK,
274   G_DRIVE_START_STOP_TYPE_PASSWORD
275 } GDriveStartStopType;
276
277 /**
278  * GFileCopyFlags:
279  * @G_FILE_COPY_NONE: No flags set.
280  * @G_FILE_COPY_OVERWRITE: Overwrite any existing files
281  * @G_FILE_COPY_BACKUP: Make a backup of any existing files.
282  * @G_FILE_COPY_NOFOLLOW_SYMLINKS: Don't follow symlinks.
283  * @G_FILE_COPY_ALL_METADATA: Copy all file metadata instead of just default set used for copy (see #GFileInfo).
284  * @G_FILE_COPY_NO_FALLBACK_FOR_MOVE: Don't use copy and delete fallback if native move not supported.
285  * @G_FILE_COPY_TARGET_DEFAULT_PERMS: Leaves target file with default perms, instead of setting the source file perms.
286  *
287  * Flags used when copying or moving files.
288  */
289 typedef enum {
290   G_FILE_COPY_NONE                 = 0,          /*< nick=none >*/
291   G_FILE_COPY_OVERWRITE            = (1 << 0),
292   G_FILE_COPY_BACKUP               = (1 << 1),
293   G_FILE_COPY_NOFOLLOW_SYMLINKS    = (1 << 2),
294   G_FILE_COPY_ALL_METADATA         = (1 << 3),
295   G_FILE_COPY_NO_FALLBACK_FOR_MOVE = (1 << 4),
296   G_FILE_COPY_TARGET_DEFAULT_PERMS = (1 << 5)
297 } GFileCopyFlags;
298
299
300 /**
301  * GFileMonitorFlags:
302  * @G_FILE_MONITOR_NONE: No flags set.
303  * @G_FILE_MONITOR_WATCH_MOUNTS: Watch for mount events.
304  * @G_FILE_MONITOR_SEND_MOVED: Pair DELETED and CREATED events caused
305  *   by file renames (moves) and send a single G_FILE_MONITOR_EVENT_MOVED
306  *   event instead (NB: not supported on all backends; the default
307  *   behaviour -without specifying this flag- is to send single DELETED
308  *   and CREATED events).
309  *
310  * Flags used to set what a #GFileMonitor will watch for.
311  */
312 typedef enum {
313   G_FILE_MONITOR_NONE         = 0,
314   G_FILE_MONITOR_WATCH_MOUNTS = (1 << 0),
315   G_FILE_MONITOR_SEND_MOVED   = (1 << 1)
316 } GFileMonitorFlags;
317
318
319 /**
320  * GFileType:
321  * @G_FILE_TYPE_UNKNOWN: File's type is unknown.
322  * @G_FILE_TYPE_REGULAR: File handle represents a regular file.
323  * @G_FILE_TYPE_DIRECTORY: File handle represents a directory.
324  * @G_FILE_TYPE_SYMBOLIC_LINK: File handle represents a symbolic link
325  *    (Unix systems).
326  * @G_FILE_TYPE_SPECIAL: File is a "special" file, such as a socket, fifo,
327  *    block device, or character device.
328  * @G_FILE_TYPE_SHORTCUT: File is a shortcut (Windows systems).
329  * @G_FILE_TYPE_MOUNTABLE: File is a mountable location.
330  *
331  * Indicates the file's on-disk type.
332  **/
333 typedef enum {
334   G_FILE_TYPE_UNKNOWN = 0,
335   G_FILE_TYPE_REGULAR,
336   G_FILE_TYPE_DIRECTORY,
337   G_FILE_TYPE_SYMBOLIC_LINK,
338   G_FILE_TYPE_SPECIAL, /* socket, fifo, blockdev, chardev */
339   G_FILE_TYPE_SHORTCUT,
340   G_FILE_TYPE_MOUNTABLE
341 } GFileType;
342
343
344 /**
345  * GFilesystemPreviewType:
346  * @G_FILESYSTEM_PREVIEW_TYPE_IF_ALWAYS: Only preview files if user has explicitly requested it.
347  * @G_FILESYSTEM_PREVIEW_TYPE_IF_LOCAL: Preview files if user has requested preview of "local" files.
348  * @G_FILESYSTEM_PREVIEW_TYPE_NEVER: Never preview files.
349  *
350  * Indicates a hint from the file system whether files should be
351  * previewed in a file manager. Returned as the value of the key
352  * #G_FILE_ATTRIBUTE_FILESYSTEM_USE_PREVIEW.
353  **/
354 typedef enum {
355   G_FILESYSTEM_PREVIEW_TYPE_IF_ALWAYS = 0,
356   G_FILESYSTEM_PREVIEW_TYPE_IF_LOCAL,
357   G_FILESYSTEM_PREVIEW_TYPE_NEVER
358 } GFilesystemPreviewType;
359
360
361 /**
362  * GFileMonitorEvent:
363  * @G_FILE_MONITOR_EVENT_CHANGED: a file changed.
364  * @G_FILE_MONITOR_EVENT_CHANGES_DONE_HINT: a hint that this was probably the last change in a set of changes.
365  * @G_FILE_MONITOR_EVENT_DELETED: a file was deleted.
366  * @G_FILE_MONITOR_EVENT_CREATED: a file was created.
367  * @G_FILE_MONITOR_EVENT_ATTRIBUTE_CHANGED: a file attribute was changed.
368  * @G_FILE_MONITOR_EVENT_PRE_UNMOUNT: the file location will soon be unmounted.
369  * @G_FILE_MONITOR_EVENT_UNMOUNTED: the file location was unmounted.
370  * @G_FILE_MONITOR_EVENT_MOVED: the file was moved.
371  *
372  * Specifies what type of event a monitor event is.
373  **/
374 typedef enum {
375   G_FILE_MONITOR_EVENT_CHANGED,
376   G_FILE_MONITOR_EVENT_CHANGES_DONE_HINT,
377   G_FILE_MONITOR_EVENT_DELETED,
378   G_FILE_MONITOR_EVENT_CREATED,
379   G_FILE_MONITOR_EVENT_ATTRIBUTE_CHANGED,
380   G_FILE_MONITOR_EVENT_PRE_UNMOUNT,
381   G_FILE_MONITOR_EVENT_UNMOUNTED,
382   G_FILE_MONITOR_EVENT_MOVED
383 } GFileMonitorEvent;
384
385
386 /* This enumeration conflicts with GIOError in giochannel.h. However,
387  * that is only used as a return value in some deprecated functions.
388  * So, we reuse the same prefix for the enumeration values, but call
389  * the actual enumeration (which is rarely used) GIOErrorEnum.
390  */
391 /**
392  * GIOErrorEnum:
393  * @G_IO_ERROR_FAILED: Generic error condition for when any operation fails.
394  * @G_IO_ERROR_NOT_FOUND: File not found error.
395  * @G_IO_ERROR_EXISTS: File already exists error.
396  * @G_IO_ERROR_IS_DIRECTORY: File is a directory error.
397  * @G_IO_ERROR_NOT_DIRECTORY: File is not a directory.
398  * @G_IO_ERROR_NOT_EMPTY: File is a directory that isn't empty.
399  * @G_IO_ERROR_NOT_REGULAR_FILE: File is not a regular file.
400  * @G_IO_ERROR_NOT_SYMBOLIC_LINK: File is not a symbolic link.
401  * @G_IO_ERROR_NOT_MOUNTABLE_FILE: File cannot be mounted.
402  * @G_IO_ERROR_FILENAME_TOO_LONG: Filename is too many characters.
403  * @G_IO_ERROR_INVALID_FILENAME: Filename is invalid or contains invalid characters.
404  * @G_IO_ERROR_TOO_MANY_LINKS: File contains too many symbolic links.
405  * @G_IO_ERROR_NO_SPACE: No space left on drive.
406  * @G_IO_ERROR_INVALID_ARGUMENT: Invalid argument.
407  * @G_IO_ERROR_PERMISSION_DENIED: Permission denied.
408  * @G_IO_ERROR_NOT_SUPPORTED: Operation not supported for the current backend.
409  * @G_IO_ERROR_NOT_MOUNTED: File isn't mounted.
410  * @G_IO_ERROR_ALREADY_MOUNTED: File is already mounted.
411  * @G_IO_ERROR_CLOSED: File was closed.
412  * @G_IO_ERROR_CANCELLED: Operation was cancelled. See #GCancellable.
413  * @G_IO_ERROR_PENDING: Operations are still pending.
414  * @G_IO_ERROR_READ_ONLY: File is read only.
415  * @G_IO_ERROR_CANT_CREATE_BACKUP: Backup couldn't be created.
416  * @G_IO_ERROR_WRONG_ETAG: File's Entity Tag was incorrect.
417  * @G_IO_ERROR_TIMED_OUT: Operation timed out.
418  * @G_IO_ERROR_WOULD_RECURSE: Operation would be recursive.
419  * @G_IO_ERROR_BUSY: File is busy.
420  * @G_IO_ERROR_WOULD_BLOCK: Operation would block.
421  * @G_IO_ERROR_HOST_NOT_FOUND: Host couldn't be found (remote operations).
422  * @G_IO_ERROR_WOULD_MERGE: Operation would merge files.
423  * @G_IO_ERROR_FAILED_HANDLED: Operation failed and a helper program has
424  *     already interacted with the user. Do not display any error dialog.
425  * @G_IO_ERROR_TOO_MANY_OPEN_FILES: The current process has too many files
426  *     open and can't open any more. Duplicate descriptors do count toward
427  *     this limit. Since 2.20
428  * @G_IO_ERROR_NOT_INITIALIZED: The object has not been initialized. Since 2.22
429  * @G_IO_ERROR_ADDRESS_IN_USE: The requested address is already in use. Since 2.22
430  * @G_IO_ERROR_PARTIAL_INPUT: Need more input to finish operation. Since 2.24
431  * @G_IO_ERROR_INVALID_DATA: There input data was invalid. Since 2.24
432  * @G_IO_ERROR_DBUS_ERROR: A remote object generated an error that
433  *     doesn't correspond to a locally registered #GError error
434  *     domain. Use g_dbus_error_get_remote_error() to extract the D-Bus
435  *     error name and g_dbus_error_strip_remote_error() to fix up the
436  *     message so it matches what was received on the wire. Since 2.26.
437  *
438  * Error codes returned by GIO functions.
439  *
440  **/
441 typedef enum {
442   G_IO_ERROR_FAILED,
443   G_IO_ERROR_NOT_FOUND,
444   G_IO_ERROR_EXISTS,
445   G_IO_ERROR_IS_DIRECTORY,
446   G_IO_ERROR_NOT_DIRECTORY,
447   G_IO_ERROR_NOT_EMPTY,
448   G_IO_ERROR_NOT_REGULAR_FILE,
449   G_IO_ERROR_NOT_SYMBOLIC_LINK,
450   G_IO_ERROR_NOT_MOUNTABLE_FILE,
451   G_IO_ERROR_FILENAME_TOO_LONG,
452   G_IO_ERROR_INVALID_FILENAME,
453   G_IO_ERROR_TOO_MANY_LINKS,
454   G_IO_ERROR_NO_SPACE,
455   G_IO_ERROR_INVALID_ARGUMENT,
456   G_IO_ERROR_PERMISSION_DENIED,
457   G_IO_ERROR_NOT_SUPPORTED,
458   G_IO_ERROR_NOT_MOUNTED,
459   G_IO_ERROR_ALREADY_MOUNTED,
460   G_IO_ERROR_CLOSED,
461   G_IO_ERROR_CANCELLED,
462   G_IO_ERROR_PENDING,
463   G_IO_ERROR_READ_ONLY,
464   G_IO_ERROR_CANT_CREATE_BACKUP,
465   G_IO_ERROR_WRONG_ETAG,
466   G_IO_ERROR_TIMED_OUT,
467   G_IO_ERROR_WOULD_RECURSE,
468   G_IO_ERROR_BUSY,
469   G_IO_ERROR_WOULD_BLOCK,
470   G_IO_ERROR_HOST_NOT_FOUND,
471   G_IO_ERROR_WOULD_MERGE,
472   G_IO_ERROR_FAILED_HANDLED,
473   G_IO_ERROR_TOO_MANY_OPEN_FILES,
474   G_IO_ERROR_NOT_INITIALIZED,
475   G_IO_ERROR_ADDRESS_IN_USE,
476   G_IO_ERROR_PARTIAL_INPUT,
477   G_IO_ERROR_INVALID_DATA,
478   G_IO_ERROR_DBUS_ERROR
479 } GIOErrorEnum;
480
481
482 /**
483  * GAskPasswordFlags:
484  * @G_ASK_PASSWORD_NEED_PASSWORD: operation requires a password.
485  * @G_ASK_PASSWORD_NEED_USERNAME: operation requires a username.
486  * @G_ASK_PASSWORD_NEED_DOMAIN: operation requires a domain.
487  * @G_ASK_PASSWORD_SAVING_SUPPORTED: operation supports saving settings.
488  * @G_ASK_PASSWORD_ANONYMOUS_SUPPORTED: operation supports anonymous users.
489  *
490  * #GAskPasswordFlags are used to request specific information from the
491  * user, or to notify the user of their choices in an authentication
492  * situation.
493  **/
494 typedef enum {
495   G_ASK_PASSWORD_NEED_PASSWORD       = (1 << 0),
496   G_ASK_PASSWORD_NEED_USERNAME       = (1 << 1),
497   G_ASK_PASSWORD_NEED_DOMAIN         = (1 << 2),
498   G_ASK_PASSWORD_SAVING_SUPPORTED    = (1 << 3),
499   G_ASK_PASSWORD_ANONYMOUS_SUPPORTED = (1 << 4)
500 } GAskPasswordFlags;
501
502
503 /**
504  * GPasswordSave:
505  * @G_PASSWORD_SAVE_NEVER: never save a password.
506  * @G_PASSWORD_SAVE_FOR_SESSION: save a password for the session.
507  * @G_PASSWORD_SAVE_PERMANENTLY: save a password permanently.
508  *
509  * #GPasswordSave is used to indicate the lifespan of a saved password.
510  *
511  * #Gvfs stores passwords in the Gnome keyring when this flag allows it
512  * to, and later retrieves it again from there.
513  **/
514 typedef enum {
515   G_PASSWORD_SAVE_NEVER,
516   G_PASSWORD_SAVE_FOR_SESSION,
517   G_PASSWORD_SAVE_PERMANENTLY
518 } GPasswordSave;
519
520
521 /**
522  * GMountOperationResult:
523  * @G_MOUNT_OPERATION_HANDLED: The request was fulfilled and the
524  *     user specified data is now available
525  * @G_MOUNT_OPERATION_ABORTED: The user requested the mount operation
526  *     to be aborted
527  * @G_MOUNT_OPERATION_UNHANDLED: The request was unhandled (i.e. not
528  *     implemented)
529  *
530  * #GMountOperationResult is returned as a result when a request for
531  * information is send by the mounting operation.
532  **/
533 typedef enum {
534   G_MOUNT_OPERATION_HANDLED,
535   G_MOUNT_OPERATION_ABORTED,
536   G_MOUNT_OPERATION_UNHANDLED
537 } GMountOperationResult;
538
539
540 /**
541  * GOutputStreamSpliceFlags:
542  * @G_OUTPUT_STREAM_SPLICE_NONE: Do not close either stream.
543  * @G_OUTPUT_STREAM_SPLICE_CLOSE_SOURCE: Close the source stream after
544  *     the splice.
545  * @G_OUTPUT_STREAM_SPLICE_CLOSE_TARGET: Close the target stream after
546  *     the splice.
547  *
548  * GOutputStreamSpliceFlags determine how streams should be spliced.
549  **/
550 typedef enum {
551   G_OUTPUT_STREAM_SPLICE_NONE         = 0,
552   G_OUTPUT_STREAM_SPLICE_CLOSE_SOURCE = (1 << 0),
553   G_OUTPUT_STREAM_SPLICE_CLOSE_TARGET = (1 << 1)
554 } GOutputStreamSpliceFlags;
555
556
557 /**
558  * GEmblemOrigin:
559  * @G_EMBLEM_ORIGIN_UNKNOWN: Emblem of unknown origin
560  * @G_EMBLEM_ORIGIN_DEVICE: Emblem adds device-specific information
561  * @G_EMBLEM_ORIGIN_LIVEMETADATA: Emblem depicts live metadata, such as "readonly"
562  * @G_EMBLEM_ORIGIN_TAG: Emblem comes from a user-defined tag, e.g. set by nautilus (in the future)
563  *
564  * GEmblemOrigin is used to add information about the origin of the emblem
565  * to #GEmblem.
566  *
567  * Since: 2.18
568  */
569 typedef enum  {
570   G_EMBLEM_ORIGIN_UNKNOWN,
571   G_EMBLEM_ORIGIN_DEVICE,
572   G_EMBLEM_ORIGIN_LIVEMETADATA,
573   G_EMBLEM_ORIGIN_TAG
574 } GEmblemOrigin;
575
576 /**
577  * GResolverError:
578  * @G_RESOLVER_ERROR_NOT_FOUND: the requested name/address/service was not
579  *     found
580  * @G_RESOLVER_ERROR_TEMPORARY_FAILURE: the requested information could not
581  *     be looked up due to a network error or similar problem
582  * @G_RESOLVER_ERROR_INTERNAL: unknown error
583  *
584  * An error code used with %G_RESOLVER_ERROR in a #GError returned
585  * from a #GResolver routine.
586  *
587  * Since: 2.22
588  */
589 typedef enum {
590   G_RESOLVER_ERROR_NOT_FOUND,
591   G_RESOLVER_ERROR_TEMPORARY_FAILURE,
592   G_RESOLVER_ERROR_INTERNAL
593 } GResolverError;
594
595 /**
596  * GSocketFamily:
597  * @G_SOCKET_FAMILY_INVALID: no address family
598  * @G_SOCKET_FAMILY_IPV4: the IPv4 family
599  * @G_SOCKET_FAMILY_IPV6: the IPv6 family
600  * @G_SOCKET_FAMILY_UNIX: the UNIX domain family
601  *
602  * The protocol family of a #GSocketAddress. (These values are
603  * identical to the system defines %AF_INET, %AF_INET6 and %AF_UNIX,
604  * if available.)
605  *
606  * Since: 2.22
607  */
608 typedef enum {
609   G_SOCKET_FAMILY_INVALID,
610 #ifdef GLIB_SYSDEF_AF_UNIX
611   G_SOCKET_FAMILY_UNIX = GLIB_SYSDEF_AF_UNIX,
612 #endif
613   G_SOCKET_FAMILY_IPV4 = GLIB_SYSDEF_AF_INET,
614   G_SOCKET_FAMILY_IPV6 = GLIB_SYSDEF_AF_INET6
615 } GSocketFamily;
616
617 /**
618  * GSocketType:
619  * @G_SOCKET_TYPE_INVALID: Type unknown or wrong
620  * @G_SOCKET_TYPE_STREAM: Reliable connection-based byte streams (e.g. TCP).
621  * @G_SOCKET_TYPE_DATAGRAM: Connectionless, unreliable datagram passing.
622  *     (e.g. UDP)
623  * @G_SOCKET_TYPE_SEQPACKET: Reliable connection-based passing of datagrams
624  *     of fixed maximum length (e.g. SCTP).
625  *
626  * Flags used when creating a #GSocket. Some protocols may not implement
627  * all the socket types.
628  *
629  * Since: 2.22
630  */
631 typedef enum
632 {
633   G_SOCKET_TYPE_INVALID,
634   G_SOCKET_TYPE_STREAM,
635   G_SOCKET_TYPE_DATAGRAM,
636   G_SOCKET_TYPE_SEQPACKET
637 } GSocketType;
638
639 /**
640  * GSocketMsgFlags:
641  * @G_SOCKET_MSG_NONE: No flags.
642  * @G_SOCKET_MSG_OOB: Request to send/receive out of band data.
643  * @G_SOCKET_MSG_PEEK: Read data from the socket without removing it from
644  *     the queue.
645  * @G_SOCKET_MSG_DONTROUTE: Don't use a gateway to send out the packet,
646  *     only send to hosts on directly connected networks.
647  *
648  * Flags used in g_socket_receive_message() and g_socket_send_message().
649  * The flags listed in the enum are some commonly available flags, but the
650  * values used for them are the same as on the platform, and any other flags
651  * are passed in/out as is. So to use a platform specific flag, just include
652  * the right system header and pass in the flag.
653  *
654  * Since: 2.22
655  */
656 typedef enum
657 {
658   G_SOCKET_MSG_NONE,
659   G_SOCKET_MSG_OOB = GLIB_SYSDEF_MSG_OOB,
660   G_SOCKET_MSG_PEEK = GLIB_SYSDEF_MSG_PEEK,
661   G_SOCKET_MSG_DONTROUTE = GLIB_SYSDEF_MSG_DONTROUTE
662 } GSocketMsgFlags;
663
664 /**
665  * GSocketProtocol:
666  * @G_SOCKET_PROTOCOL_UNKNOWN: The protocol type is unknown
667  * @G_SOCKET_PROTOCOL_DEFAULT: The default protocol for the family/type
668  * @G_SOCKET_PROTOCOL_TCP: TCP over IP
669  * @G_SOCKET_PROTOCOL_UDP: UDP over IP
670  * @G_SOCKET_PROTOCOL_SCTP: SCTP over IP
671  *
672  * A protocol identifier is specified when creating a #GSocket, which is a
673  * family/type specific identifier, where 0 means the default protocol for
674  * the particular family/type.
675  *
676  * This enum contains a set of commonly available and used protocols. You
677  * can also pass any other identifiers handled by the platform in order to
678  * use protocols not listed here.
679  *
680  * Since: 2.22
681  */
682 typedef enum {
683   G_SOCKET_PROTOCOL_UNKNOWN = -1,
684   G_SOCKET_PROTOCOL_DEFAULT = 0,
685   G_SOCKET_PROTOCOL_TCP     = 6,
686   G_SOCKET_PROTOCOL_UDP     = 17,
687   G_SOCKET_PROTOCOL_SCTP    = 132
688 } GSocketProtocol;
689
690 /**
691  * GZlibCompressorFormat:
692  * @G_ZLIB_COMPRESSOR_FORMAT_ZLIB: deflate compression with zlib header
693  * @G_ZLIB_COMPRESSOR_FORMAT_GZIP: gzip file format
694  * @G_ZLIB_COMPRESSOR_FORMAT_RAW: deflate compression with no header
695  *
696  * Used to select the type of data format to use for #GZlibDecompressor
697  * and #GZlibCompressor.
698  *
699  * Since: 2.24
700  */
701 typedef enum {
702   G_ZLIB_COMPRESSOR_FORMAT_ZLIB,
703   G_ZLIB_COMPRESSOR_FORMAT_GZIP,
704   G_ZLIB_COMPRESSOR_FORMAT_RAW
705 } GZlibCompressorFormat;
706
707 /**
708  * GUnixSocketAddressType:
709  * @G_UNIX_SOCKET_ADDRESS_INVALID: invalid
710  * @G_UNIX_SOCKET_ADDRESS_ANONYMOUS: anonymous
711  * @G_UNIX_SOCKET_ADDRESS_PATH: a filesystem path
712  * @G_UNIX_SOCKET_ADDRESS_ABSTRACT: an abstract name
713  * @G_UNIX_SOCKET_ADDRESS_ABSTRACT_PADDED: an abstract name, 0-padded
714  *   to the full length of a unix socket name
715  *
716  * The type of name used by a #GUnixSocketAddress.
717  * %G_UNIX_SOCKET_ADDRESS_PATH indicates a traditional unix domain
718  * socket bound to a filesystem path. %G_UNIX_SOCKET_ADDRESS_ANONYMOUS
719  * indicates a socket not bound to any name (eg, a client-side socket,
720  * or a socket created with socketpair()).
721  *
722  * For abstract sockets, there are two incompatible ways of naming
723  * them: the man pages suggest using the entire <literal>struct
724  * sockaddr_un</literal> as the name, padding the unused parts of the
725  * %sun_path field with zeroes; this corresponds to
726  * %G_UNIX_SOCKET_ADDRESS_ABSTRACT_PADDED. However, many programs
727  * instead just use a portion of %sun_path, and pass an appropriate
728  * smaller length to bind() or connect(). This is
729  * %G_UNIX_SOCKET_ADDRESS_ABSTRACT.
730  *
731  * Since: 2.26
732  */
733 typedef enum {
734   G_UNIX_SOCKET_ADDRESS_INVALID,
735   G_UNIX_SOCKET_ADDRESS_ANONYMOUS,
736   G_UNIX_SOCKET_ADDRESS_PATH,
737   G_UNIX_SOCKET_ADDRESS_ABSTRACT,
738   G_UNIX_SOCKET_ADDRESS_ABSTRACT_PADDED
739 } GUnixSocketAddressType;
740
741 /**
742  * GBusType:
743  * @G_BUS_TYPE_STARTER: An alias for the message bus that activated the process, if any.
744  * @G_BUS_TYPE_NONE: Not a message bus.
745  * @G_BUS_TYPE_SYSTEM: The system-wide message bus.
746  * @G_BUS_TYPE_SESSION: The login session message bus.
747  *
748  * An enumeration for well-known message buses.
749  *
750  * Since: 2.26
751  */
752 typedef enum
753 {
754   G_BUS_TYPE_STARTER = -1,
755   G_BUS_TYPE_NONE = 0,
756   G_BUS_TYPE_SYSTEM  = 1,
757   G_BUS_TYPE_SESSION = 2
758 } GBusType;
759
760 /**
761  * GBusNameOwnerFlags:
762  * @G_BUS_NAME_OWNER_FLAGS_NONE: No flags set.
763  * @G_BUS_NAME_OWNER_FLAGS_ALLOW_REPLACEMENT: Allow another message bus connection to claim the the name.
764  * @G_BUS_NAME_OWNER_FLAGS_REPLACE: If another message bus connection owns the name and have
765  * specified #G_BUS_NAME_OWNER_FLAGS_ALLOW_REPLACEMENT, then take the name from the other connection.
766  *
767  * Flags used in g_bus_own_name().
768  *
769  * Since: 2.26
770  */
771 typedef enum
772 {
773   G_BUS_NAME_OWNER_FLAGS_NONE = 0,                    /*< nick=none >*/
774   G_BUS_NAME_OWNER_FLAGS_ALLOW_REPLACEMENT = (1<<0),  /*< nick=allow-replacement >*/
775   G_BUS_NAME_OWNER_FLAGS_REPLACE = (1<<1)            /*< nick=replace >*/
776 } GBusNameOwnerFlags;
777
778 /**
779  * GBusNameWatcherFlags:
780  * @G_BUS_NAME_WATCHER_FLAGS_NONE: No flags set.
781  * @G_BUS_NAME_WATCHER_FLAGS_AUTO_START: If no-one owns the name when
782  * beginning to watch the name, ask the bus to launch an owner for the
783  * name.
784  *
785  * Flags used in g_bus_watch_name().
786  *
787  * Since: 2.26
788  */
789 typedef enum
790 {
791   G_BUS_NAME_WATCHER_FLAGS_NONE = 0,
792   G_BUS_NAME_WATCHER_FLAGS_AUTO_START = (1<<0)
793 } GBusNameWatcherFlags;
794
795 /**
796  * GDBusProxyFlags:
797  * @G_DBUS_PROXY_FLAGS_NONE: No flags set.
798  * @G_DBUS_PROXY_FLAGS_DO_NOT_LOAD_PROPERTIES: Don't load properties.
799  * @G_DBUS_PROXY_FLAGS_DO_NOT_CONNECT_SIGNALS: Don't connect to signals on the remote object.
800  * @G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START: If not set and the proxy if for a well-known name,
801  * then request the bus to launch an owner for the name if no-one owns the name. This flag can
802  * only be used in proxies for well-known names.
803  *
804  * Flags used when constructing an instance of a #GDBusProxy derived class.
805  *
806  * Since: 2.26
807  */
808 typedef enum
809 {
810   G_DBUS_PROXY_FLAGS_NONE = 0,
811   G_DBUS_PROXY_FLAGS_DO_NOT_LOAD_PROPERTIES = (1<<0),
812   G_DBUS_PROXY_FLAGS_DO_NOT_CONNECT_SIGNALS = (1<<1),
813   G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START = (1<<2)
814 } GDBusProxyFlags;
815
816 /**
817  * GDBusError:
818  * @G_DBUS_ERROR_FAILED:
819  * A generic error; "something went wrong" - see the error message for
820  * more.
821  * @G_DBUS_ERROR_NO_MEMORY:
822  * There was not enough memory to complete an operation.
823  * @G_DBUS_ERROR_SERVICE_UNKNOWN:
824  * The bus doesn't know how to launch a service to supply the bus name
825  * you wanted.
826  * @G_DBUS_ERROR_NAME_HAS_NO_OWNER:
827  * The bus name you referenced doesn't exist (i.e. no application owns
828  * it).
829  * @G_DBUS_ERROR_NO_REPLY:
830  * No reply to a message expecting one, usually means a timeout occurred.
831  * @G_DBUS_ERROR_IO_ERROR:
832  * Something went wrong reading or writing to a socket, for example.
833  * @G_DBUS_ERROR_BAD_ADDRESS:
834  * A D-Bus bus address was malformed.
835  * @G_DBUS_ERROR_NOT_SUPPORTED:
836  * Requested operation isn't supported (like ENOSYS on UNIX).
837  * @G_DBUS_ERROR_LIMITS_EXCEEDED:
838  * Some limited resource is exhausted.
839  * @G_DBUS_ERROR_ACCESS_DENIED:
840  * Security restrictions don't allow doing what you're trying to do.
841  * @G_DBUS_ERROR_AUTH_FAILED:
842  * Authentication didn't work.
843  * @G_DBUS_ERROR_NO_SERVER:
844  * Unable to connect to server (probably caused by ECONNREFUSED on a
845  * socket).
846  * @G_DBUS_ERROR_TIMEOUT:
847  * Certain timeout errors, possibly ETIMEDOUT on a socket.  Note that
848  * %G_DBUS_ERROR_NO_REPLY is used for message reply timeouts. Warning:
849  * this is confusingly-named given that %G_DBUS_ERROR_TIMED_OUT also
850  * exists. We can't fix it for compatibility reasons so just be
851  * careful.
852  * @G_DBUS_ERROR_NO_NETWORK:
853  * No network access (probably ENETUNREACH on a socket).
854  * @G_DBUS_ERROR_ADDRESS_IN_USE:
855  * Can't bind a socket since its address is in use (i.e. EADDRINUSE).
856  * @G_DBUS_ERROR_DISCONNECTED:
857  * The connection is disconnected and you're trying to use it.
858  * @G_DBUS_ERROR_INVALID_ARGS:
859  * Invalid arguments passed to a method call.
860  * @G_DBUS_ERROR_FILE_NOT_FOUND:
861  * Missing file.
862  * @G_DBUS_ERROR_FILE_EXISTS:
863  * Existing file and the operation you're using does not silently overwrite.
864  * @G_DBUS_ERROR_UNKNOWN_METHOD:
865  * Method name you invoked isn't known by the object you invoked it on.
866  * @G_DBUS_ERROR_TIMED_OUT:
867  * Certain timeout errors, e.g. while starting a service. Warning: this is
868  * confusingly-named given that %G_DBUS_ERROR_TIMEOUT also exists. We
869  * can't fix it for compatibility reasons so just be careful.
870  * @G_DBUS_ERROR_MATCH_RULE_NOT_FOUND:
871  * Tried to remove or modify a match rule that didn't exist.
872  * @G_DBUS_ERROR_MATCH_RULE_INVALID:
873  * The match rule isn't syntactically valid.
874  * @G_DBUS_ERROR_SPAWN_EXEC_FAILED:
875  * While starting a new process, the exec() call failed.
876  * @G_DBUS_ERROR_SPAWN_FORK_FAILED:
877  * While starting a new process, the fork() call failed.
878  * @G_DBUS_ERROR_SPAWN_CHILD_EXITED:
879  * While starting a new process, the child exited with a status code.
880  * @G_DBUS_ERROR_SPAWN_CHILD_SIGNALED:
881  * While starting a new process, the child exited on a signal.
882  * @G_DBUS_ERROR_SPAWN_FAILED:
883  * While starting a new process, something went wrong.
884  * @G_DBUS_ERROR_SPAWN_SETUP_FAILED:
885  * We failed to setup the environment correctly.
886  * @G_DBUS_ERROR_SPAWN_CONFIG_INVALID:
887  * We failed to setup the config parser correctly.
888  * @G_DBUS_ERROR_SPAWN_SERVICE_INVALID:
889  * Bus name was not valid.
890  * @G_DBUS_ERROR_SPAWN_SERVICE_NOT_FOUND:
891  * Service file not found in system-services directory.
892  * @G_DBUS_ERROR_SPAWN_PERMISSIONS_INVALID:
893  * Permissions are incorrect on the setuid helper.
894  * @G_DBUS_ERROR_SPAWN_FILE_INVALID:
895  * Service file invalid (Name, User or Exec missing).
896  * @G_DBUS_ERROR_SPAWN_NO_MEMORY:
897  * Tried to get a UNIX process ID and it wasn't available.
898  * @G_DBUS_ERROR_UNIX_PROCESS_ID_UNKNOWN:
899  * Tried to get a UNIX process ID and it wasn't available.
900  * @G_DBUS_ERROR_INVALID_SIGNATURE:
901  * A type signature is not valid.
902  * @G_DBUS_ERROR_INVALID_FILE_CONTENT:
903  * A file contains invalid syntax or is otherwise broken.
904  * @G_DBUS_ERROR_SELINUX_SECURITY_CONTEXT_UNKNOWN:
905  * Asked for SELinux security context and it wasn't available.
906  * @G_DBUS_ERROR_ADT_AUDIT_DATA_UNKNOWN:
907  * Asked for ADT audit data and it wasn't available.
908  * @G_DBUS_ERROR_OBJECT_PATH_IN_USE:
909  * There's already an object with the requested object path.
910  *
911  * Error codes for the %G_DBUS_ERROR error domain.
912  *
913  * Since: 2.26
914  */
915 typedef enum
916 {
917   /* Well-known errors in the org.freedesktop.DBus.Error namespace */
918   G_DBUS_ERROR_FAILED,                           /* org.freedesktop.DBus.Error.Failed */
919   G_DBUS_ERROR_NO_MEMORY,                        /* org.freedesktop.DBus.Error.NoMemory */
920   G_DBUS_ERROR_SERVICE_UNKNOWN,                  /* org.freedesktop.DBus.Error.ServiceUnknown */
921   G_DBUS_ERROR_NAME_HAS_NO_OWNER,                /* org.freedesktop.DBus.Error.NameHasNoOwner */
922   G_DBUS_ERROR_NO_REPLY,                         /* org.freedesktop.DBus.Error.NoReply */
923   G_DBUS_ERROR_IO_ERROR,                         /* org.freedesktop.DBus.Error.IOError */
924   G_DBUS_ERROR_BAD_ADDRESS,                      /* org.freedesktop.DBus.Error.BadAddress */
925   G_DBUS_ERROR_NOT_SUPPORTED,                    /* org.freedesktop.DBus.Error.NotSupported */
926   G_DBUS_ERROR_LIMITS_EXCEEDED,                  /* org.freedesktop.DBus.Error.LimitsExceeded */
927   G_DBUS_ERROR_ACCESS_DENIED,                    /* org.freedesktop.DBus.Error.AccessDenied */
928   G_DBUS_ERROR_AUTH_FAILED,                      /* org.freedesktop.DBus.Error.AuthFailed */
929   G_DBUS_ERROR_NO_SERVER,                        /* org.freedesktop.DBus.Error.NoServer */
930   G_DBUS_ERROR_TIMEOUT,                          /* org.freedesktop.DBus.Error.Timeout */
931   G_DBUS_ERROR_NO_NETWORK,                       /* org.freedesktop.DBus.Error.NoNetwork */
932   G_DBUS_ERROR_ADDRESS_IN_USE,                   /* org.freedesktop.DBus.Error.AddressInUse */
933   G_DBUS_ERROR_DISCONNECTED,                     /* org.freedesktop.DBus.Error.Disconnected */
934   G_DBUS_ERROR_INVALID_ARGS,                     /* org.freedesktop.DBus.Error.InvalidArgs */
935   G_DBUS_ERROR_FILE_NOT_FOUND,                   /* org.freedesktop.DBus.Error.FileNotFound */
936   G_DBUS_ERROR_FILE_EXISTS,                      /* org.freedesktop.DBus.Error.FileExists */
937   G_DBUS_ERROR_UNKNOWN_METHOD,                   /* org.freedesktop.DBus.Error.UnknownMethod */
938   G_DBUS_ERROR_TIMED_OUT,                        /* org.freedesktop.DBus.Error.TimedOut */
939   G_DBUS_ERROR_MATCH_RULE_NOT_FOUND,             /* org.freedesktop.DBus.Error.MatchRuleNotFound */
940   G_DBUS_ERROR_MATCH_RULE_INVALID,               /* org.freedesktop.DBus.Error.MatchRuleInvalid */
941   G_DBUS_ERROR_SPAWN_EXEC_FAILED,                /* org.freedesktop.DBus.Error.Spawn.ExecFailed */
942   G_DBUS_ERROR_SPAWN_FORK_FAILED,                /* org.freedesktop.DBus.Error.Spawn.ForkFailed */
943   G_DBUS_ERROR_SPAWN_CHILD_EXITED,               /* org.freedesktop.DBus.Error.Spawn.ChildExited */
944   G_DBUS_ERROR_SPAWN_CHILD_SIGNALED,             /* org.freedesktop.DBus.Error.Spawn.ChildSignaled */
945   G_DBUS_ERROR_SPAWN_FAILED,                     /* org.freedesktop.DBus.Error.Spawn.Failed */
946   G_DBUS_ERROR_SPAWN_SETUP_FAILED,               /* org.freedesktop.DBus.Error.Spawn.FailedToSetup */
947   G_DBUS_ERROR_SPAWN_CONFIG_INVALID,             /* org.freedesktop.DBus.Error.Spawn.ConfigInvalid */
948   G_DBUS_ERROR_SPAWN_SERVICE_INVALID,            /* org.freedesktop.DBus.Error.Spawn.ServiceNotValid */
949   G_DBUS_ERROR_SPAWN_SERVICE_NOT_FOUND,          /* org.freedesktop.DBus.Error.Spawn.ServiceNotFound */
950   G_DBUS_ERROR_SPAWN_PERMISSIONS_INVALID,        /* org.freedesktop.DBus.Error.Spawn.PermissionsInvalid */
951   G_DBUS_ERROR_SPAWN_FILE_INVALID,               /* org.freedesktop.DBus.Error.Spawn.FileInvalid */
952   G_DBUS_ERROR_SPAWN_NO_MEMORY,                  /* org.freedesktop.DBus.Error.Spawn.NoMemory */
953   G_DBUS_ERROR_UNIX_PROCESS_ID_UNKNOWN,          /* org.freedesktop.DBus.Error.UnixProcessIdUnknown */
954   G_DBUS_ERROR_INVALID_SIGNATURE,                /* org.freedesktop.DBus.Error.InvalidSignature */
955   G_DBUS_ERROR_INVALID_FILE_CONTENT,             /* org.freedesktop.DBus.Error.InvalidFileContent */
956   G_DBUS_ERROR_SELINUX_SECURITY_CONTEXT_UNKNOWN, /* org.freedesktop.DBus.Error.SELinuxSecurityContextUnknown */
957   G_DBUS_ERROR_ADT_AUDIT_DATA_UNKNOWN,           /* org.freedesktop.DBus.Error.AdtAuditDataUnknown */
958   G_DBUS_ERROR_OBJECT_PATH_IN_USE                /* org.freedesktop.DBus.Error.ObjectPathInUse */
959 } GDBusError;
960 /* Remember to update g_dbus_error_quark() in gdbuserror.c if you extend this enumeration */
961
962 /**
963  * GDBusConnectionFlags:
964  * @G_DBUS_CONNECTION_FLAGS_NONE: No flags set.
965  * @G_DBUS_CONNECTION_FLAGS_AUTHENTICATION_CLIENT: Perform authentication against server.
966  * @G_DBUS_CONNECTION_FLAGS_AUTHENTICATION_SERVER: Perform authentication against client.
967  * @G_DBUS_CONNECTION_FLAGS_AUTHENTICATION_ALLOW_ANONYMOUS: When
968  * authenticating as a server, allow the anonymous authentication
969  * method.
970  * @G_DBUS_CONNECTION_FLAGS_MESSAGE_BUS_CONNECTION: Pass this flag if connecting to a peer that is a
971  * message bus. This means that the Hello() method will be invoked as part of the connection setup.
972  *
973  * Flags used when creating a new #GDBusConnection.
974  *
975  * Since: 2.26
976  */
977 typedef enum {
978   G_DBUS_CONNECTION_FLAGS_NONE = 0,
979   G_DBUS_CONNECTION_FLAGS_AUTHENTICATION_CLIENT = (1<<0),
980   G_DBUS_CONNECTION_FLAGS_AUTHENTICATION_SERVER = (1<<1),
981   G_DBUS_CONNECTION_FLAGS_AUTHENTICATION_ALLOW_ANONYMOUS = (1<<2),
982   G_DBUS_CONNECTION_FLAGS_MESSAGE_BUS_CONNECTION = (1<<3)
983 } GDBusConnectionFlags;
984
985 /**
986  * GDBusCapabilityFlags:
987  * @G_DBUS_CAPABILITY_FLAGS_NONE: No flags set.
988  * @G_DBUS_CAPABILITY_FLAGS_UNIX_FD_PASSING: The connection
989  * supports exchanging UNIX file descriptors with the remote peer.
990  *
991  * Capabilities negotiated with the remote peer.
992  *
993  * Since: 2.26
994  */
995 typedef enum {
996   G_DBUS_CAPABILITY_FLAGS_NONE = 0,
997   G_DBUS_CAPABILITY_FLAGS_UNIX_FD_PASSING = (1<<0)
998 } GDBusCapabilityFlags;
999
1000 /**
1001  * GDBusCallFlags:
1002  * @G_DBUS_CALL_FLAGS_NONE: No flags set.
1003  * @G_DBUS_CALL_FLAGS_NO_AUTO_START: The bus must not launch
1004  * an owner for the destination name in response to this method
1005  * invocation.
1006  *
1007  * Flags used in g_dbus_connection_call() and similar APIs.
1008  *
1009  * Since: 2.26
1010  */
1011 typedef enum {
1012   G_DBUS_CALL_FLAGS_NONE = 0,
1013   G_DBUS_CALL_FLAGS_NO_AUTO_START = (1<<0)
1014 } GDBusCallFlags;
1015
1016 /**
1017  * GDBusMessageType:
1018  * @G_DBUS_MESSAGE_TYPE_INVALID: Message is of invalid type.
1019  * @G_DBUS_MESSAGE_TYPE_METHOD_CALL: Method call.
1020  * @G_DBUS_MESSAGE_TYPE_METHOD_RETURN: Method reply.
1021  * @G_DBUS_MESSAGE_TYPE_ERROR: Error reply.
1022  * @G_DBUS_MESSAGE_TYPE_SIGNAL: Signal emission.
1023  *
1024  * Message types used in #GDBusMessage.
1025  *
1026  * Since: 2.26
1027  */
1028 typedef enum {
1029   G_DBUS_MESSAGE_TYPE_INVALID,
1030   G_DBUS_MESSAGE_TYPE_METHOD_CALL,
1031   G_DBUS_MESSAGE_TYPE_METHOD_RETURN,
1032   G_DBUS_MESSAGE_TYPE_ERROR,
1033   G_DBUS_MESSAGE_TYPE_SIGNAL
1034 } GDBusMessageType;
1035
1036 /**
1037  * GDBusMessageFlags:
1038  * @G_DBUS_MESSAGE_FLAGS_NONE: No flags set.
1039  * @G_DBUS_MESSAGE_FLAGS_NO_REPLY_EXPECTED: A reply is not expected.
1040  * @G_DBUS_MESSAGE_FLAGS_NO_AUTO_START: The bus must not launch an
1041  * owner for the destination name in response to this message.
1042  *
1043  * Message flags used in #GDBusMessage.
1044  *
1045  * Since: 2.26
1046  */
1047 typedef enum {
1048   G_DBUS_MESSAGE_FLAGS_NONE = 0,
1049   G_DBUS_MESSAGE_FLAGS_NO_REPLY_EXPECTED = (1<<0),
1050   G_DBUS_MESSAGE_FLAGS_NO_AUTO_START = (1<<1)
1051 } GDBusMessageFlags;
1052
1053 /**
1054  * GDBusMessageHeaderField:
1055  * @G_DBUS_MESSAGE_HEADER_FIELD_INVALID: Not a valid header field.
1056  * @G_DBUS_MESSAGE_HEADER_FIELD_PATH: The object path.
1057  * @G_DBUS_MESSAGE_HEADER_FIELD_INTERFACE: The interface name.
1058  * @G_DBUS_MESSAGE_HEADER_FIELD_MEMBER: The method or signal name.
1059  * @G_DBUS_MESSAGE_HEADER_FIELD_ERROR_NAME: The name of the error that occurred.
1060  * @G_DBUS_MESSAGE_HEADER_FIELD_REPLY_SERIAL: The serial number the message is a reply to.
1061  * @G_DBUS_MESSAGE_HEADER_FIELD_DESTINATION: The name the message is intended for.
1062  * @G_DBUS_MESSAGE_HEADER_FIELD_SENDER: Unique name of the sender of the message (filled in by the bus).
1063  * @G_DBUS_MESSAGE_HEADER_FIELD_SIGNATURE: The signature of the message body.
1064  * @G_DBUS_MESSAGE_HEADER_FIELD_NUM_UNIX_FDS: The number of UNIX file descriptors that accompany the message.
1065  *
1066  * Header fields used in #GDBusMessage.
1067  *
1068  * Since: 2.26
1069  */
1070 typedef enum {
1071   G_DBUS_MESSAGE_HEADER_FIELD_INVALID,
1072   G_DBUS_MESSAGE_HEADER_FIELD_PATH,
1073   G_DBUS_MESSAGE_HEADER_FIELD_INTERFACE,
1074   G_DBUS_MESSAGE_HEADER_FIELD_MEMBER,
1075   G_DBUS_MESSAGE_HEADER_FIELD_ERROR_NAME,
1076   G_DBUS_MESSAGE_HEADER_FIELD_REPLY_SERIAL,
1077   G_DBUS_MESSAGE_HEADER_FIELD_DESTINATION,
1078   G_DBUS_MESSAGE_HEADER_FIELD_SENDER,
1079   G_DBUS_MESSAGE_HEADER_FIELD_SIGNATURE,
1080   G_DBUS_MESSAGE_HEADER_FIELD_NUM_UNIX_FDS
1081 } GDBusMessageHeaderField;
1082
1083 /**
1084  * GDBusPropertyInfoFlags:
1085  * @G_DBUS_PROPERTY_INFO_FLAGS_NONE: No flags set.
1086  * @G_DBUS_PROPERTY_INFO_FLAGS_READABLE: Property is readable.
1087  * @G_DBUS_PROPERTY_INFO_FLAGS_WRITABLE: Property is writable.
1088  *
1089  * Flags describing the access control of a D-Bus property.
1090  *
1091  * Since: 2.26
1092  */
1093 typedef enum
1094 {
1095   G_DBUS_PROPERTY_INFO_FLAGS_NONE = 0,
1096   G_DBUS_PROPERTY_INFO_FLAGS_READABLE = (1<<0),
1097   G_DBUS_PROPERTY_INFO_FLAGS_WRITABLE = (1<<1)
1098 } GDBusPropertyInfoFlags;
1099
1100 /**
1101  * GDBusSubtreeFlags:
1102  * @G_DBUS_SUBTREE_FLAGS_NONE: No flags set.
1103  * @G_DBUS_SUBTREE_FLAGS_DISPATCH_TO_UNENUMERATED_NODES: Method calls to objects not in the enumerated range
1104  *                                                       will still be dispatched. This is useful if you want
1105  *                                                       to dynamically spawn objects in the subtree.
1106  *
1107  * Flags passed to g_dbus_connection_register_subtree().
1108  *
1109  * Since: 2.26
1110  */
1111 typedef enum
1112 {
1113   G_DBUS_SUBTREE_FLAGS_NONE = 0,
1114   G_DBUS_SUBTREE_FLAGS_DISPATCH_TO_UNENUMERATED_NODES = (1<<0)
1115 } GDBusSubtreeFlags;
1116
1117 /**
1118  * GDBusServerFlags:
1119  * @G_DBUS_SERVER_FLAGS_NONE: No flags set.
1120  * @G_DBUS_SERVER_FLAGS_RUN_IN_THREAD: All #GDBusServer::new-connection
1121  * signals will run in separated dedicated threads (see signal for
1122  * details).
1123  * @G_DBUS_SERVER_FLAGS_AUTHENTICATION_ALLOW_ANONYMOUS: Allow the anonymous
1124  * authentication method.
1125  *
1126  * Flags used when creating a #GDBusServer.
1127  *
1128  * Since: 2.26
1129  */
1130 typedef enum
1131 {
1132   G_DBUS_SERVER_FLAGS_NONE = 0,
1133   G_DBUS_SERVER_FLAGS_RUN_IN_THREAD = (1<<0),
1134   G_DBUS_SERVER_FLAGS_AUTHENTICATION_ALLOW_ANONYMOUS = (1<<1)
1135 } GDBusServerFlags;
1136
1137 G_END_DECLS
1138
1139 #endif /* __GIO_ENUMS_H__ */