GMenuModel exporter: remove workaround
[glib.git] / gio / gapplicationimpl.h
blob0072c545dd168ed48ac25091f887ac6b5f3f52db
1 #include "giotypes.h"
3 typedef struct _GApplicationImpl GApplicationImpl;
5 typedef struct
7 gchar *name;
9 GVariantType *parameter_type;
10 gboolean enabled;
11 GVariant *state;
12 } RemoteActionInfo;
14 G_GNUC_INTERNAL
15 void g_application_impl_destroy (GApplicationImpl *impl);
17 G_GNUC_INTERNAL
18 GApplicationImpl * g_application_impl_register (GApplication *application,
19 const gchar *appid,
20 GApplicationFlags flags,
21 GActionGroup **remote_actions,
22 GCancellable *cancellable,
23 GError **error);
25 G_GNUC_INTERNAL
26 void g_application_impl_activate (GApplicationImpl *impl,
27 GVariant *platform_data);
29 G_GNUC_INTERNAL
30 void g_application_impl_open (GApplicationImpl *impl,
31 GFile **files,
32 gint n_files,
33 const gchar *hint,
34 GVariant *platform_data);
36 G_GNUC_INTERNAL
37 int g_application_impl_command_line (GApplicationImpl *impl,
38 gchar **arguments,
39 GVariant *platform_data);
41 G_GNUC_INTERNAL
42 void g_application_impl_flush (GApplicationImpl *impl);