Github User Fetcher 1.0.0
C Application with Server and GUI
|
#include <gio/giotypes.h>
Go to the source code of this file.
Data Structures | |
struct | _GCancellable |
struct | _GCancellableClass |
Macros | |
#define | G_TYPE_CANCELLABLE (g_cancellable_get_type ()) |
#define | G_CANCELLABLE(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_CANCELLABLE, GCancellable)) |
#define | G_CANCELLABLE_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_CANCELLABLE, GCancellableClass)) |
#define | G_IS_CANCELLABLE(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_CANCELLABLE)) |
#define | G_IS_CANCELLABLE_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_CANCELLABLE)) |
#define | G_CANCELLABLE_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_CANCELLABLE, GCancellableClass)) |
Typedefs | |
typedef struct _GCancellableClass | GCancellableClass |
typedef struct _GCancellablePrivate | GCancellablePrivate |
#define G_CANCELLABLE | ( | o | ) | (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_CANCELLABLE, GCancellable)) |
Definition at line 35 of file gcancellable.h.
#define G_CANCELLABLE_CLASS | ( | k | ) | (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_CANCELLABLE, GCancellableClass)) |
Definition at line 36 of file gcancellable.h.
#define G_CANCELLABLE_GET_CLASS | ( | o | ) | (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_CANCELLABLE, GCancellableClass)) |
Definition at line 39 of file gcancellable.h.
#define G_IS_CANCELLABLE | ( | o | ) | (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_CANCELLABLE)) |
Definition at line 37 of file gcancellable.h.
#define G_IS_CANCELLABLE_CLASS | ( | k | ) | (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_CANCELLABLE)) |
Definition at line 38 of file gcancellable.h.
#define G_TYPE_CANCELLABLE (g_cancellable_get_type ()) |
Definition at line 34 of file gcancellable.h.
typedef struct _GCancellableClass GCancellableClass |
Definition at line 41 of file gcancellable.h.
typedef struct _GCancellablePrivate GCancellablePrivate |
Definition at line 42 of file gcancellable.h.
GIO_AVAILABLE_IN_ALL void g_cancellable_cancel | ( | GCancellable * | cancellable | ) |
GIO_AVAILABLE_IN_ALL gulong g_cancellable_connect | ( | GCancellable * | cancellable, |
GCallback | callback, | ||
gpointer | data, | ||
GDestroyNotify | data_destroy_func ) |
GIO_AVAILABLE_IN_ALL void g_cancellable_disconnect | ( | GCancellable * | cancellable, |
gulong | handler_id ) |
GIO_AVAILABLE_IN_ALL GCancellable * g_cancellable_get_current | ( | void | ) |
GIO_AVAILABLE_IN_ALL int g_cancellable_get_fd | ( | GCancellable * | cancellable | ) |
GIO_AVAILABLE_IN_ALL GType g_cancellable_get_type | ( | void | ) |
GIO_AVAILABLE_IN_ALL gboolean g_cancellable_is_cancelled | ( | GCancellable * | cancellable | ) |
GIO_AVAILABLE_IN_ALL gboolean g_cancellable_make_pollfd | ( | GCancellable * | cancellable, |
GPollFD * | pollfd ) |
GIO_AVAILABLE_IN_ALL GCancellable * g_cancellable_new | ( | void | ) |
GIO_AVAILABLE_IN_ALL void g_cancellable_pop_current | ( | GCancellable * | cancellable | ) |
GIO_AVAILABLE_IN_ALL void g_cancellable_push_current | ( | GCancellable * | cancellable | ) |
GIO_AVAILABLE_IN_ALL void g_cancellable_release_fd | ( | GCancellable * | cancellable | ) |
GIO_AVAILABLE_IN_ALL void g_cancellable_reset | ( | GCancellable * | cancellable | ) |
GIO_AVAILABLE_IN_ALL gboolean g_cancellable_set_error_if_cancelled | ( | GCancellable * | cancellable, |
GError ** | error ) |
GIO_AVAILABLE_IN_ALL GSource * g_cancellable_source_new | ( | GCancellable * | cancellable | ) |