mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-10 00:34:59 +01:00
WebSockets: improve JS client message handling code
This commit is contained in:
parent
176d803a55
commit
8ff4bcfd68
6 changed files with 53 additions and 74 deletions
|
|
@ -31,10 +31,6 @@
|
|||
|
||||
namespace Node
|
||||
{
|
||||
const std::string transport_tempo = "transport_tempo";
|
||||
const std::string transport_time = "transport_time";
|
||||
const std::string transport_roll = "transport_roll";
|
||||
const std::string transport_record = "transport_record";
|
||||
const std::string strip_description = "strip_description";
|
||||
const std::string strip_meter = "strip_meter";
|
||||
const std::string strip_gain = "strip_gain";
|
||||
|
|
@ -44,6 +40,10 @@ namespace Node
|
|||
const std::string strip_plugin_enable = "strip_plugin_enable";
|
||||
const std::string strip_plugin_param_description = "strip_plugin_param_description";
|
||||
const std::string strip_plugin_param_value = "strip_plugin_param_value";
|
||||
const std::string transport_tempo = "transport_tempo";
|
||||
const std::string transport_time = "transport_time";
|
||||
const std::string transport_roll = "transport_roll";
|
||||
const std::string transport_record = "transport_record";
|
||||
} // namespace Node
|
||||
|
||||
typedef std::vector<uint32_t> AddressVector;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue