summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Hughes <richard@hughsie.com>2016-12-20 15:49:10 +0000
committerRichard Hughes <richard@hughsie.com>2016-12-21 16:01:41 +0000
commit1259b69240e442cebb58f866c80c852385399bdd (patch)
tree8990b54f38c494ebf3ef1a6bae298c9edac75df3
parentfcb201be7269248fcb5cab4fce7af2f260e51406 (diff)
downloadappstream-glib-1259b69240e442cebb58f866c80c852385399bdd.tar.gz
trivial: Add AS_APP_QUIRK_REMOVABLE_HARDWARE
-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 e0f44c5..5110f49 100644
--- a/libappstream-glib/as-app.h
+++ b/libappstream-glib/as-app.h
@@ -338,6 +338,7 @@ typedef enum {
* @AS_APP_QUIRK_NOT_LAUNCHABLE: The app is not launchable (run-able)
* @AS_APP_QUIRK_NEEDS_USER_ACTION: The component requires some kind of user action
* @AS_APP_QUIRK_IS_PROXY: Is a proxy app that operates on other applications
+ * @AS_APP_QUIRK_REMOVABLE_HARDWARE: The device is unusable whilst the action is performed
*
* The component attributes.
**/
@@ -353,6 +354,7 @@ typedef enum {
AS_APP_QUIRK_NOT_LAUNCHABLE = 1 << 7, /* Since: 0.5.15 */
AS_APP_QUIRK_NEEDS_USER_ACTION = 1 << 8, /* Since: 0.6.2 */
AS_APP_QUIRK_IS_PROXY = 1 << 9, /* Since: 0.6.6 */
+ AS_APP_QUIRK_REMOVABLE_HARDWARE = 1 << 10, /* Since: 0.6.6 */
/*< private >*/
AS_APP_QUIRK_LAST
} AsAppQuirk;