MsgParsing.h (852B)
1 /* 2 ZynAddSubFX - a software synthesizer 3 4 MsgParsing.h - Message Parsing declarations 5 Copyright (C) 2020-2020 Johannes Lorenz 6 Author: Johannes Lorenz 7 8 This program is free software; you can redistribute it and/or 9 modify it under the terms of the GNU General Public License 10 as published by the Free Software Foundation; either version 2 11 of the License, or (at your option) any later version. 12 */ 13 14 #ifndef MSGPARSING_H 15 #define MSGPARSING_H 16 17 #include <string> 18 19 /* 20 * Build/parse messages from/to part/kit/voice IDs 21 */ 22 23 namespace zyn { 24 25 std::string buildVoiceParMsg(const int *part, const int *kit, 26 const int *voice = nullptr, const bool *isFm = nullptr); 27 std::size_t idsFromMsg(const char* msg, int* part, int* kit, 28 int* voice = nullptr, bool* isFm = nullptr); 29 30 } 31 32 #endif // MSGPARSING_H