summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Hughes <richard@hughsie.com>2016-03-23 10:48:13 +0000
committerRichard Hughes <richard@hughsie.com>2016-03-23 10:48:13 +0000
commit91a4d62016f79dc6bd8c1d897908296abb9fed78 (patch)
tree427aa934d98526a16827b017ba0efd749139c342
parentab2bb1d8316c90a661d3e9ad18d8574e3f126d64 (diff)
downloadappstream-glib-91a4d62016f79dc6bd8c1d897908296abb9fed78.tar.gz
Add AS_APP_QUIRK_MATCH_ANY_PREFIX
This is really just for client programs and isn't going to be used internally.
-rw-r--r--libappstream-glib/as-app.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/libappstream-glib/as-app.h b/libappstream-glib/as-app.h
index 6b1d603..2075a8d 100644
--- a/libappstream-glib/as-app.h
+++ b/libappstream-glib/as-app.h
@@ -216,6 +216,7 @@ typedef enum {
* @AS_APP_QUIRK_PROVENANCE: Installed by OS vendor
* @AS_APP_QUIRK_COMPULSORY: Cannot be removed
* @AS_APP_QUIRK_HAS_SOURCE: Has a source to allow staying up-to-date
+ * @AS_APP_QUIRK_MATCH_ANY_PREFIX: Matches applications with any prefix
*
* The component attributes.
**/
@@ -224,6 +225,7 @@ typedef enum {
AS_APP_QUIRK_PROVENANCE = 1 << 0, /* Since: 0.5.10 */
AS_APP_QUIRK_COMPULSORY = 1 << 1, /* Since: 0.5.10 */
AS_APP_QUIRK_HAS_SOURCE = 1 << 2, /* Since: 0.5.10 */
+ AS_APP_QUIRK_MATCH_ANY_PREFIX = 1 << 3, /* Since: 0.5.12 */
/*< private >*/
AS_APP_QUIRK_LAST
} AsAppQuirk;