diff options
Diffstat (limited to 'apps/osc.h')
-rw-r--r-- | apps/osc.h | 10 |
1 files changed, 7 insertions, 3 deletions
@@ -25,8 +25,12 @@ #include "lo/lo.h" -lo_server_thread osc_init(const char* port); -void osc_start(lo_server_thread); -void osc_stop(lo_server_thread); +typedef struct { + lo_server_thread st_; +} osc_t; + +int osc_init(osc_t* o, const char* port); +void osc_start(osc_t* o); +void osc_stop(osc_t* o); #endif |