summaryrefslogtreecommitdiff
path: root/src/libostree/ostree-bootloader.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libostree/ostree-bootloader.h')
-rw-r--r--src/libostree/ostree-bootloader.h55
1 files changed, 22 insertions, 33 deletions
diff --git a/src/libostree/ostree-bootloader.h b/src/libostree/ostree-bootloader.h
index 00f5632c..bb326f5a 100644
--- a/src/libostree/ostree-bootloader.h
+++ b/src/libostree/ostree-bootloader.h
@@ -24,56 +24,45 @@
G_BEGIN_DECLS
#define OSTREE_TYPE_BOOTLOADER (_ostree_bootloader_get_type ())
-#define OSTREE_BOOTLOADER(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), OSTREE_TYPE_BOOTLOADER, OstreeBootloader))
+#define OSTREE_BOOTLOADER(inst) \
+ (G_TYPE_CHECK_INSTANCE_CAST ((inst), OSTREE_TYPE_BOOTLOADER, OstreeBootloader))
#define OSTREE_IS_BOOTLOADER(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), OSTREE_TYPE_BOOTLOADER))
-#define OSTREE_BOOTLOADER_GET_IFACE(inst) (G_TYPE_INSTANCE_GET_INTERFACE ((inst), OSTREE_TYPE_BOOTLOADER, OstreeBootloaderInterface))
+#define OSTREE_BOOTLOADER_GET_IFACE(inst) \
+ (G_TYPE_INSTANCE_GET_INTERFACE ((inst), OSTREE_TYPE_BOOTLOADER, OstreeBootloaderInterface))
typedef struct _OstreeBootloader OstreeBootloader;
-typedef struct _OstreeBootloaderInterface OstreeBootloaderInterface;
+typedef struct _OstreeBootloaderInterface OstreeBootloaderInterface;
struct _OstreeBootloaderInterface
{
GTypeInterface g_iface;
/* virtual functions */
- gboolean (* query) (OstreeBootloader *bootloader,
- gboolean *out_is_active,
- GCancellable *cancellable,
- GError **error);
- const char * (* get_name) (OstreeBootloader *self);
- gboolean (* write_config) (OstreeBootloader *self,
- int bootversion,
- GPtrArray *new_deployments,
- GCancellable *cancellable,
- GError **error);
- gboolean (* post_bls_sync) (OstreeBootloader *self,
- int bootversion,
- GCancellable *cancellable,
- GError **error);
- gboolean (* is_atomic) (OstreeBootloader *self);
+ gboolean (*query) (OstreeBootloader *bootloader, gboolean *out_is_active,
+ GCancellable *cancellable, GError **error);
+ const char *(*get_name) (OstreeBootloader *self);
+ gboolean (*write_config) (OstreeBootloader *self, int bootversion, GPtrArray *new_deployments,
+ GCancellable *cancellable, GError **error);
+ gboolean (*post_bls_sync) (OstreeBootloader *self, int bootversion, GCancellable *cancellable,
+ GError **error);
+ gboolean (*is_atomic) (OstreeBootloader *self);
};
G_DEFINE_AUTOPTR_CLEANUP_FUNC (OstreeBootloader, g_object_unref)
GType _ostree_bootloader_get_type (void) G_GNUC_CONST;
-gboolean _ostree_bootloader_query (OstreeBootloader *bootloader,
- gboolean *out_is_active,
- GCancellable *cancellable,
- GError **error);
+gboolean _ostree_bootloader_query (OstreeBootloader *bootloader, gboolean *out_is_active,
+ GCancellable *cancellable, GError **error);
-const char *_ostree_bootloader_get_name (OstreeBootloader *self);
+const char *_ostree_bootloader_get_name (OstreeBootloader *self);
-gboolean _ostree_bootloader_write_config (OstreeBootloader *self,
- int bootversion,
- GPtrArray *new_deployments,
- GCancellable *cancellable,
- GError **error);
+gboolean _ostree_bootloader_write_config (OstreeBootloader *self, int bootversion,
+ GPtrArray *new_deployments, GCancellable *cancellable,
+ GError **error);
-gboolean _ostree_bootloader_post_bls_sync (OstreeBootloader *self,
- int bootversion,
- GCancellable *cancellable,
- GError **error);
+gboolean _ostree_bootloader_post_bls_sync (OstreeBootloader *self, int bootversion,
+ GCancellable *cancellable, GError **error);
-gboolean _ostree_bootloader_is_atomic (OstreeBootloader *self);
+gboolean _ostree_bootloader_is_atomic (OstreeBootloader *self);
G_END_DECLS