summaryrefslogtreecommitdiff
path: root/libappstream-glib/as-store.h
diff options
context:
space:
mode:
authorRichard Hughes <richard@hughsie.com>2014-06-26 10:50:28 +0100
committerRichard Hughes <richard@hughsie.com>2014-06-26 11:56:36 +0100
commit17ec03eb373ae0d4901aa0f61b8969edca326092 (patch)
tree99d70064f267932fe64f4c69845c01a141977fc6 /libappstream-glib/as-store.h
parente9fce47136ba0b361ebbd94e997924929bff0c9e (diff)
downloadappstream-glib-17ec03eb373ae0d4901aa0f61b8969edca326092.tar.gz
Allow AsStore to load directories of AppData and desktop files
Diffstat (limited to 'libappstream-glib/as-store.h')
-rw-r--r--libappstream-glib/as-store.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/libappstream-glib/as-store.h b/libappstream-glib/as-store.h
index 9aad7ee..6231675 100644
--- a/libappstream-glib/as-store.h
+++ b/libappstream-glib/as-store.h
@@ -69,6 +69,8 @@ struct _AsStoreClass
* @AS_STORE_LOAD_FLAG_APP_INFO_SYSTEM: The system app-info AppStream data
* @AS_STORE_LOAD_FLAG_APP_INFO_USER: The per-user app-info AppStream data
* @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
*
* The flags to use when loading the store.
**/
@@ -77,6 +79,8 @@ typedef enum {
AS_STORE_LOAD_FLAG_APP_INFO_SYSTEM = 1, /* Since: 0.1.2 */
AS_STORE_LOAD_FLAG_APP_INFO_USER = 2, /* Since: 0.1.2 */
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 */
/*< private >*/
AS_STORE_LOAD_FLAG_LAST
} AsStoreLoadFlags;