mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-08 10:26:16 +01:00
6f8f1f7097
Now that we use an explicit list of symbols to export, the G_GNUC_INTERNAL is redundant. https://bugzilla.gnome.org/show_bug.cgi?id=688681
42 lines
2.3 KiB
C
42 lines
2.3 KiB
C
#include "giotypes.h"
|
|
|
|
typedef struct _GApplicationImpl GApplicationImpl;
|
|
|
|
typedef struct
|
|
{
|
|
gchar *name;
|
|
|
|
GVariantType *parameter_type;
|
|
gboolean enabled;
|
|
GVariant *state;
|
|
} RemoteActionInfo;
|
|
|
|
void g_application_impl_destroy (GApplicationImpl *impl);
|
|
|
|
GApplicationImpl * g_application_impl_register (GApplication *application,
|
|
const gchar *appid,
|
|
GApplicationFlags flags,
|
|
GActionGroup *exported_actions,
|
|
GRemoteActionGroup **remote_actions,
|
|
GCancellable *cancellable,
|
|
GError **error);
|
|
|
|
void g_application_impl_activate (GApplicationImpl *impl,
|
|
GVariant *platform_data);
|
|
|
|
void g_application_impl_open (GApplicationImpl *impl,
|
|
GFile **files,
|
|
gint n_files,
|
|
const gchar *hint,
|
|
GVariant *platform_data);
|
|
|
|
int g_application_impl_command_line (GApplicationImpl *impl,
|
|
gchar **arguments,
|
|
GVariant *platform_data);
|
|
|
|
void g_application_impl_flush (GApplicationImpl *impl);
|
|
|
|
GDBusConnection * g_application_impl_get_dbus_connection (GApplicationImpl *impl);
|
|
|
|
const gchar * g_application_impl_get_dbus_object_path (GApplicationImpl *impl);
|