diff options
Diffstat (limited to 'src/slv2_internal.h')
-rw-r--r-- | src/slv2_internal.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/slv2_internal.h b/src/slv2_internal.h index c6b8a41..d24d570 100644 --- a/src/slv2_internal.h +++ b/src/slv2_internal.h @@ -221,6 +221,11 @@ void slv2_plugin_classes_free(); /* ********* World ********* */ +typedef struct { + bool dyn_manifest; + bool filter_language; +} SLV2Options; + /** Model of LV2 (RDF) data loaded from bundles. */ struct _SLV2World { @@ -259,7 +264,7 @@ struct _SLV2World { SLV2Node xsd_integer_node; SLV2Value doap_name_val; SLV2Value lv2_name_val; - bool filter_language; + SLV2Options opt; }; const uint8_t* |