buff_sz URIs.

This commit is contained in:
Robin E. R. Davies
2025-09-09 15:57:07 -04:00
parent 367394843a
commit 584c159c42
2 changed files with 13 additions and 0 deletions
+7
View File
@@ -209,6 +209,13 @@ void PluginHost::LilvUris::Initialize(LilvWorld *pWorld)
mod__fileTypes = lilv_new_uri(pWorld, "http://moddevices.com/ns/mod#fileTypes");
mod__supportedExtensions = lilv_new_uri(pWorld, "http://moddevices.com/ns/mod#supportedExtensions");
buf_size__minBlockLength = lilv_new_uri(pWorld, LV2_BUF_SIZE__minBlockLength);
buf_size__maxBlockLength = lilv_new_uri(pWorld, LV2_BUF_SIZE__maxBlockLength);
buf_size__fixedBlockLength = lilv_new_uri(pWorld, LV2_BUF_SIZE__fixedBlockLength);
buf_size__coarseBlockLength = lilv_new_uri(pWorld, LV2_BUF_SIZE__coarseBlockLength);
}
void PluginHost::LilvUris::Free()
+6
View File
@@ -850,6 +850,12 @@ namespace pipedal
AutoLilvNode mod__supportedExtensions;
AutoLilvNode pipedalui__fileTypes;
AutoLilvNode buf_size__minBlockLength;
AutoLilvNode buf_size__maxBlockLength;
AutoLilvNode buf_size__fixedBlockLength;
AutoLilvNode buf_size__coarseBlockLength;
};
LilvUris* lilvUris = nullptr;