X-Git-Url: https://git.draconx.ca/gitweb/upkg.git/blobdiff_plain/67988e9de2e9002064d52b4a1c5b5c4f8e6e665f..0b66ccda847802bdc7ba4755743031c323df4b7e:/src/exportable.c diff --git a/src/exportable.c b/src/exportable.c new file mode 100644 index 0000000..8947fcc --- /dev/null +++ b/src/exportable.c @@ -0,0 +1,31 @@ +#include +#include +#include "exportable.h" + +GType upkg_exportable_get_type(void) +{ + static GType type = 0; + if (type == 0) { + static const GTypeInfo info = { + sizeof (UPkgExportable), + NULL, + NULL, + }; + + type = g_type_register_static(G_TYPE_INTERFACE, + "UPkgExportable", &info, 0); + } + return type; +} + +int upkg_export(GObject *obj, FILE *f) +{ + g_return_val_if_fail(UPKG_IS_EXPORTABLE(obj), -1); + return UPKG_EXPORTABLE_GET_INTERFACE(obj)->export(obj, f); +} + +int upkg_export_name(GObject *obj, char *buf, size_t n) +{ + g_return_val_if_fail(UPKG_IS_EXPORTABLE(obj), -1); + return UPKG_EXPORTABLE_GET_INTERFACE(obj)->export_name(obj, buf, n); +}