mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-01 23:13:40 +02:00
new GApplication implementation
This commit is contained in:
@@ -1216,6 +1216,24 @@ typedef enum
|
||||
G_DBUS_MESSAGE_BYTE_ORDER_LITTLE_ENDIAN = 'l'
|
||||
} GDBusMessageByteOrder;
|
||||
|
||||
/**
|
||||
* GApplicationFlags:
|
||||
* @G_APPLICATION_FLAGS_NONE: Default
|
||||
* @G_APPLICATION_FLAGS_HANDLE_OPEN: This application handles opening files.
|
||||
*
|
||||
* Flags used to define the behaviour of a #GApplication.
|
||||
*
|
||||
* Since: 2.26
|
||||
**/
|
||||
typedef enum
|
||||
{
|
||||
G_APPLICATION_FLAGS_NONE,
|
||||
G_APPLICATION_FLAGS_IS_SERVICE = (1 << 0),
|
||||
G_APPLICATION_FLAGS_IS_LAUNCHER = (1 << 1),
|
||||
|
||||
G_APPLICATION_FLAGS_HANDLES_OPEN = (1 << 2)
|
||||
} GApplicationFlags;
|
||||
|
||||
G_END_DECLS
|
||||
|
||||
#endif /* __GIO_ENUMS_H__ */
|
||||
|
Reference in New Issue
Block a user