define these two functions

This commit is contained in:
tildearrow 2024-03-20 18:29:21 -05:00
parent afed13001a
commit 94ae06dd6e

View file

@ -2715,6 +2715,9 @@ class FurnaceGUI {
void initTutorial();
void activateTutorial(FurnaceGUITutorials which);
bool loadUserPresets();
bool saveUserPresets();
void encodeMMLStr(String& target, int* macro, int macroLen, int macroLoop, int macroRel, bool hex=false, bool bit30=false);
void decodeMMLStr(String& source, int* macro, unsigned char& macroLen, unsigned char& macroLoop, int macroMin, int macroMax, unsigned char& macroRel, bool bit30=false);
void decodeMMLStrW(String& source, int* macro, int& macroLen, int macroMin, int macroMax, bool hex=false);