X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=gio%2Fgioenums.h;h=ff8a7387972c92054b74a383359cb53a8534cd9e;hb=2138deb07ebb7d7e541c0cd35b966e107d1bf800;hp=488e04bc1f072be6c5c87888458f1a2ed732807a;hpb=a155019ef73117b790ff4fe6cec5240b8ce0b12d;p=platform%2Fupstream%2Fglib.git diff --git a/gio/gioenums.h b/gio/gioenums.h index 488e04b..ff8a738 100644 --- a/gio/gioenums.h +++ b/gio/gioenums.h @@ -912,6 +912,8 @@ typedef enum { * @G_BUS_TYPE_NONE: Not a message bus. * @G_BUS_TYPE_SYSTEM: The system-wide message bus. * @G_BUS_TYPE_SESSION: The login session message bus. + * @G_BUS_TYPE_MACHINE: New bus type for kdbus transport (falls back to system bus in case of failure). + * @G_BUS_TYPE_USER: New bus type for kdbus transport (falls back to session bus in case of failure). * * An enumeration for well-known message buses. * @@ -922,7 +924,9 @@ typedef enum G_BUS_TYPE_STARTER = -1, G_BUS_TYPE_NONE = 0, G_BUS_TYPE_SYSTEM = 1, - G_BUS_TYPE_SESSION = 2 + G_BUS_TYPE_SESSION = 2, + G_BUS_TYPE_MACHINE = 3, + G_BUS_TYPE_USER = 4 } GBusType; /** @@ -931,6 +935,7 @@ typedef enum * @G_BUS_NAME_OWNER_FLAGS_ALLOW_REPLACEMENT: Allow another message bus connection to claim the name. * @G_BUS_NAME_OWNER_FLAGS_REPLACE: If another message bus connection owns the name and have * specified #G_BUS_NAME_OWNER_FLAGS_ALLOW_REPLACEMENT, then take the name from the other connection. + * @G_BUS_NAME_OWNER_FLAGS_DO_NOT_QUEUE: Do not place message bus connection in a queue to own the name. * * Flags used in g_bus_own_name(). * @@ -940,10 +945,51 @@ typedef enum { G_BUS_NAME_OWNER_FLAGS_NONE = 0, /*< nick=none >*/ G_BUS_NAME_OWNER_FLAGS_ALLOW_REPLACEMENT = (1<<0), /*< nick=allow-replacement >*/ - G_BUS_NAME_OWNER_FLAGS_REPLACE = (1<<1) /*< nick=replace >*/ + G_BUS_NAME_OWNER_FLAGS_REPLACE = (1<<1), /*< nick=replace >*/ + G_BUS_NAME_OWNER_FLAGS_DO_NOT_QUEUE = (1<<2) /*< nick=do-not-queue >*/ } GBusNameOwnerFlags; /** + * GBusRequestNameReplyFlags: + * @G_BUS_REQUEST_NAME_FLAGS_ERROR: Error flag. + * @G_BUS_REQUEST_NAME_FLAGS_PRIMARY_OWNER: Caller is now the primary owner of the name, replacing any previous owner. + * @G_BUS_REQUEST_NAME_FLAGS_IN_QUEUE: The name already had an owner, the application will be placed in a queue. + * @G_BUS_REQUEST_NAME_FLAGS_EXISTS: The name already has an owner. + * @G_BUS_REQUEST_NAME_FLAGS_ALREADY_OWNER: The application trying to request ownership of a name is already the owner of it. + * + * Flags used in g_dbus_request_name(). + * + * Since: 2.4x + */ +typedef enum +{ + G_BUS_REQUEST_NAME_FLAGS_ERROR = 0, + G_BUS_REQUEST_NAME_FLAGS_PRIMARY_OWNER = 1, + G_BUS_REQUEST_NAME_FLAGS_IN_QUEUE = 2, + G_BUS_REQUEST_NAME_FLAGS_EXISTS = 3, + G_BUS_REQUEST_NAME_FLAGS_ALREADY_OWNER = 4 +} GBusRequestNameReplyFlags; + +/** + * GBusReleaseNameReplyFlags: + * @G_BUS_RELEASE_NAME_FLAGS_ERROR: Error flag. + * @G_BUS_RELEASE_NAME_FLAGS_RELEASED: The caller has released his claim on the given name. + * @G_BUS_RELEASE_NAME_FLAGS_NON_EXISTENT: The given name does not exist on this bus + * @G_BUS_RELEASE_NAME_FLAGS_NOT_OWNER: The caller not waiting in the queue to own this name + * + * Flags used in g_dbus_release_name(). + * + * Since: 2.4x + */ +typedef enum +{ + G_BUS_RELEASE_NAME_FLAGS_ERROR = 0, + G_BUS_RELEASE_NAME_FLAGS_RELEASED = 1, + G_BUS_RELEASE_NAME_FLAGS_NON_EXISTENT = 2, + G_BUS_RELEASE_NAME_FLAGS_NOT_OWNER = 3 +} GBusReleaseNameReplyFlags; + +/** * GBusNameWatcherFlags: * @G_BUS_NAME_WATCHER_FLAGS_NONE: No flags set. * @G_BUS_NAME_WATCHER_FLAGS_AUTO_START: If no-one owns the name when