summaryrefslogtreecommitdiff
path: root/libappstream-glib/as-store.h
diff options
context:
space:
mode:
authorRichard Hughes <richard@hughsie.com>2014-08-09 17:57:45 +0200
committerRichard Hughes <richard@hughsie.com>2014-08-09 18:02:52 +0200
commit36c4d159b7f0b3cc9f2b6b4bb413daeaa3270a3e (patch)
tree03d02a304c51a54bf1b128ef18ebfee14e21bfc7 /libappstream-glib/as-store.h
parent6ed3e8502439779f6af48f6668d8ac0570d27b74 (diff)
downloadappstream-glib-36c4d159b7f0b3cc9f2b6b4bb413daeaa3270a3e.tar.gz
Add AS_STORE_LOAD_FLAG_ALLOW_VETO
This allows us to add applications to the AsStore that would normally not be added because they have been vetoed.
Diffstat (limited to 'libappstream-glib/as-store.h')
-rw-r--r--libappstream-glib/as-store.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/libappstream-glib/as-store.h b/libappstream-glib/as-store.h
index c9f9c21..edc00bb 100644
--- a/libappstream-glib/as-store.h
+++ b/libappstream-glib/as-store.h
@@ -71,6 +71,7 @@ struct _AsStoreClass
* @AS_STORE_LOAD_FLAG_APP_INSTALL: The ubuntu-specific app-install data
* @AS_STORE_LOAD_FLAG_APPDATA: The installed AppData files
* @AS_STORE_LOAD_FLAG_DESKTOP: The installed desktop files
+ * @AS_STORE_LOAD_FLAG_ALLOW_VETO: Add vetoed applications
*
* The flags to use when loading the store.
**/
@@ -81,6 +82,7 @@ typedef enum {
AS_STORE_LOAD_FLAG_APP_INSTALL = 4, /* Since: 0.1.2 */
AS_STORE_LOAD_FLAG_APPDATA = 8, /* Since: 0.2.2 */
AS_STORE_LOAD_FLAG_DESKTOP = 16, /* Since: 0.2.2 */
+ AS_STORE_LOAD_FLAG_ALLOW_VETO = 32, /* Since: 0.2.5 */
/*< private >*/
AS_STORE_LOAD_FLAG_LAST
} AsStoreLoadFlags;