diff options
author | David Robillard <d@drobilla.net> | 2008-08-19 01:04:54 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2008-08-19 01:04:54 +0000 |
commit | a7e39b85d7c35ec44c613e593c57ff27de0d06bc (patch) | |
tree | 2a83f1264721bd5c7a06ad4beaa5d1f28f8bb0d6 /src/libs/client/OSCClientReceiver.cpp | |
parent | 5609c1ce452f8122b5ed12144dd4c1941bd07bc2 (diff) | |
download | ingen-a7e39b85d7c35ec44c613e593c57ff27de0d06bc.tar.gz ingen-a7e39b85d7c35ec44c613e593c57ff27de0d06bc.tar.bz2 ingen-a7e39b85d7c35ec44c613e593c57ff27de0d06bc.zip |
Remove more API/code: num_plugins (unused legacy of the really crap OSC days).
git-svn-id: http://svn.drobilla.net/lad/ingen@1442 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs/client/OSCClientReceiver.cpp')
-rw-r--r-- | src/libs/client/OSCClientReceiver.cpp | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/libs/client/OSCClientReceiver.cpp b/src/libs/client/OSCClientReceiver.cpp index 5f12cd6e..23fcd871 100644 --- a/src/libs/client/OSCClientReceiver.cpp +++ b/src/libs/client/OSCClientReceiver.cpp @@ -141,7 +141,6 @@ OSCClientReceiver::setup_callbacks() { lo_server_thread_add_method(_st, "/ingen/ok", "i", response_ok_cb, this); lo_server_thread_add_method(_st, "/ingen/error", "is", response_error_cb, this); - lo_server_thread_add_method(_st, "/ingen/num_plugins", "i", num_plugins_cb, this); lo_server_thread_add_method(_st, "/ingen/plugin", "ssss", plugin_cb, this); lo_server_thread_add_method(_st, "/ingen/new_patch", "si", new_patch_cb, this); lo_server_thread_add_method(_st, "/ingen/destroyed", "s", destroyed_cb, this); @@ -351,18 +350,6 @@ OSCClientReceiver::_response_error_cb(const char* path, const char* types, lo_ar } -/** Number of plugins in engine, should precede /ingen/plugin messages in response - * to a /ingen/send_plugins - */ -int -OSCClientReceiver::_num_plugins_cb(const char* path, const char* types, lo_arg** argv, int argc, lo_message msg) -{ - num_plugins(argv[0]->i); - - return 0; -} - - /** A plugin info response from the server, in response to an /ingen/send_plugins */ int |