diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2025-01-16 01:00:28 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2025-01-16 01:00:28 (GMT) |
commit | 64b690f0038e01e807c1ec8d62041057fd38b4b8 (patch) | |
tree | 1de592f2379547abfb8aedc452958dbdace9b658 /src/core | |
parent | 8be5b3fb8a516380fc88fd900a98238ce8564682 (diff) |
Improve the plugins management.gtk4
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/core.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/core/core.h b/src/core/core.h index 7c50f6c..e5f0a60 100644 --- a/src/core/core.h +++ b/src/core/core.h @@ -32,9 +32,11 @@ /* Eléments à (dé)charger disponibles */ typedef enum _AvailableCoreComponent { - ACC_NONE = (0 << 0), /* Statut initial */ - ACC_GLOBAL_VARS = (1 << 0), /* Singletons globaux */ - ACC_SCAN_FEATURES = (1 << 0), /* Espace de noms pour scan */ + ACC_NONE = (0 << 0), /* Statut initial */ + ACC_GLOBAL_VARS = (1 << 0), /* Singletons globaux */ + ACC_SCAN_FEATURES = (1 << 1), /* Espace de noms pour scan */ + + ACC_ALL_COMPONENTS = (1 << 2) - 1 } AvailableCoreComponent; |