summaryrefslogtreecommitdiff
path: root/libappstream-builder/asb-package-cab.h
diff options
context:
space:
mode:
authorRichard Hughes <richard@hughsie.com>2015-03-04 13:05:49 +0000
committerRichard Hughes <richard@hughsie.com>2015-03-04 13:12:25 +0000
commit0472be058442848920fd6112b8ba681ec90c57f0 (patch)
treee6af03c21c068c6b055903f80306243b254d3594 /libappstream-builder/asb-package-cab.h
parenta49cf668d2f3725773007b27925699faa7e645be (diff)
downloadappstream-glib-0472be058442848920fd6112b8ba681ec90c57f0.tar.gz
Create firmware AppStream components from .cab files
See http://blogs.gnome.org/hughsie/2015/03/03/updating-firmware-on-linux/ for more infomation on how this will be used.
Diffstat (limited to 'libappstream-builder/asb-package-cab.h')
-rw-r--r--libappstream-builder/asb-package-cab.h60
1 files changed, 60 insertions, 0 deletions
diff --git a/libappstream-builder/asb-package-cab.h b/libappstream-builder/asb-package-cab.h
new file mode 100644
index 0000000..86c2154
--- /dev/null
+++ b/libappstream-builder/asb-package-cab.h
@@ -0,0 +1,60 @@
+/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
+ *
+ * Copyright (C) 2014 Richard Hughes <richard@hughsie.com>
+ *
+ * Licensed under the GNU Lesser General Public License Version 2.1
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+#ifndef ASB_PACKAGE_CAB_H
+#define ASB_PACKAGE_CAB_H
+
+#include <glib-object.h>
+
+#include <stdarg.h>
+#include <appstream-glib.h>
+
+#include "asb-package.h"
+
+#define ASB_TYPE_PACKAGE_CAB (asb_package_cab_get_type())
+#define ASB_PACKAGE_CAB(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), ASB_TYPE_PACKAGE_CAB, AsbPackageCab))
+#define ASB_PACKAGE_CAB_CLASS(cls) (G_TYPE_CHECK_CLASS_CAST((cls), ASB_TYPE_PACKAGE_CAB, AsbPackageCabClass))
+#define ASB_IS_PACKAGE_CAB(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), ASB_TYPE_PACKAGE_CAB))
+#define ASB_IS_PACKAGE_CAB_CLASS(cls) (G_TYPE_CHECK_CLASS_TYPE((cls), ASB_TYPE_PACKAGE_CAB))
+#define ASB_PACKAGE_CAB_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), ASB_TYPE_PACKAGE_CAB, AsbPackageCabClass))
+
+G_BEGIN_DECLS
+
+typedef struct _AsbPackageCab AsbPackageCab;
+typedef struct _AsbPackageCabClass AsbPackageCabClass;
+
+struct _AsbPackageCab
+{
+ AsbPackage parent;
+};
+
+struct _AsbPackageCabClass
+{
+ AsbPackageClass parent_class;
+};
+
+GType asb_package_cab_get_type (void);
+
+AsbPackage *asb_package_cab_new (void);
+
+G_END_DECLS
+
+#endif /* ASB_PACKAGE_CAB_H */