Ardour
9.0-pre0-582-g084a23a80d
|
#include <lua_api.h>
Public Member Functions | |
Address (std::string uri) | |
~Address () | |
int | send (lua_State *lua) |
Private Attributes | |
lo_address | _addr |
|
inline |
int ARDOUR::LuaOSC::Address::send | ( | lua_State * | lua | ) |
Transmit an OSC message
Path (string) and type (string) must always be given. The number of following args must match the type. Supported types are:
'i': integer (lua number)
'f': float (lua number)
'd': double (lua number)
'h': 64bit integer (lua number)
's': string (lua string)
'c': character (lua string)
'T': boolean (lua bool) – this is not implicily True, a lua true/false must be given
'F': boolean (lua bool) – this is not implicily False, a lua true/false must be given
lua | lua arguments: path, types, ... |