summaryrefslogtreecommitdiff
path: root/lib/flatpak-error.h
diff options
context:
space:
mode:
authorAlexander Larsson <alexl@redhat.com>2016-05-06 18:03:47 +0200
committerAlexander Larsson <alexl@redhat.com>2016-05-09 09:00:20 +0200
commitc24528d3697c62cad8ff746a56992a59f31d333d (patch)
tree2dbb32e15c57cc4061f7b37d6db29a7b97228c15 /lib/flatpak-error.h
parent6a613d1fabce5e93656cfbcb6815cc9bc98f437b (diff)
downloadxdg-app-c24528d3697c62cad8ff746a56992a59f31d333d.tar.gz
Rename source files to flatpak
Diffstat (limited to 'lib/flatpak-error.h')
-rw-r--r--lib/flatpak-error.h47
1 files changed, 47 insertions, 0 deletions
diff --git a/lib/flatpak-error.h b/lib/flatpak-error.h
new file mode 100644
index 0000000..9c7b593
--- /dev/null
+++ b/lib/flatpak-error.h
@@ -0,0 +1,47 @@
+/* xdg-app-error.c
+ *
+ * Copyright (C) 2015 Red Hat, Inc
+ *
+ * This file 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 of the
+ * License, or (at your option) any later version.
+ *
+ * This file 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 program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ * Authors:
+ * Alexander Larsson <alexl@redhat.com>
+ */
+
+#ifndef FLATPAK_ERROR_H
+#define FLATPAK_ERROR_H
+
+#include <glib.h>
+
+G_BEGIN_DECLS
+
+/**
+ * FlatpakError:
+ * @FLATPAK_ERROR_ALREADY_INSTALLED: App/runtime is already installed
+ * @FLATPAK_ERROR_NOT_INSTALLED: App/runtime is not installed
+ *
+ * Error codes for library functions.
+ */
+typedef enum {
+ FLATPAK_ERROR_ALREADY_INSTALLED,
+ FLATPAK_ERROR_NOT_INSTALLED,
+} FlatpakError;
+
+#define FLATPAK_ERROR flatpak_error_quark ()
+
+FLATPAK_EXTERN GQuark flatpak_error_quark (void);
+
+G_END_DECLS
+
+#endif /* FLATPAK_ERROR_H */