summaryrefslogtreecommitdiff
path: root/src/libostree/ostree-bootloader.h
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2013-09-15 20:26:13 -0400
committerColin Walters <walters@verbum.org>2013-09-15 20:26:13 -0400
commitac0154713dade0d7755cc9d841023273dbe9119d (patch)
treefb113a70ba08bfeb77f9f188eec9eb5a1e95dcc1 /src/libostree/ostree-bootloader.h
parent4abaf27e578a89f531e0e4c4ad95da6f6ba3d188 (diff)
downloadostree-ac0154713dade0d7755cc9d841023273dbe9119d.tar.gz
libostree: Make OstreeBootloader private
It was only temporarily public while functionality was being merged down; that's done now.
Diffstat (limited to 'src/libostree/ostree-bootloader.h')
-rw-r--r--src/libostree/ostree-bootloader.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/libostree/ostree-bootloader.h b/src/libostree/ostree-bootloader.h
index 6784409f..0d07fdba 100644
--- a/src/libostree/ostree-bootloader.h
+++ b/src/libostree/ostree-bootloader.h
@@ -24,7 +24,7 @@
G_BEGIN_DECLS
-#define OSTREE_TYPE_BOOTLOADER (ostree_bootloader_get_type ())
+#define OSTREE_TYPE_BOOTLOADER (_ostree_bootloader_get_type ())
#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))
@@ -45,16 +45,16 @@ struct _OstreeBootloaderInterface
GError **error);
};
-GType ostree_bootloader_get_type (void) G_GNUC_CONST;
+GType _ostree_bootloader_get_type (void) G_GNUC_CONST;
-gboolean ostree_bootloader_query (OstreeBootloader *self);
+gboolean _ostree_bootloader_query (OstreeBootloader *self);
-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,
- GCancellable *cancellable,
- GError **error);
+gboolean _ostree_bootloader_write_config (OstreeBootloader *self,
+ int bootversion,
+ GCancellable *cancellable,
+ GError **error);
G_END_DECLS