- refactored XML structure

- new XML structure not compatible to old structure
This commit is contained in:
2023-04-29 00:05:13 +02:00
parent 08b70cb57b
commit ca353251f4
3 changed files with 142 additions and 96 deletions
+4 -4
View File
@@ -207,11 +207,11 @@ public:
XmlElement* getXmlFromBinary (const void* data, const int sizeInBytes);
const String getParameterNameXML (int index);
void patch2xml(XmlElement& xml, JaySynthSound const *patch);
void xml2patch(const XmlElement& xml, JaySynthSound *patch);
void patch2xml(XmlElement *xml, JaySynthSound const *patch);
void xml2patch(const XmlElement *xml, JaySynthSound *patch);
void bank2xml(XmlElement& xml);
void xml2bank(const XmlElement& xml);
void bank2xml(XmlElement *xml);
void xml2bank(const XmlElement *xml);
void getCurrentProgramStateInformation (MemoryBlock& destData);
void setCurrentProgramStateInformation (const void* data, int sizeInBytes);