TetaTricks/code/listen-osc.c

16 lines
204 B
C
Raw Normal View History

2020-12-23 08:53:57 +11:00
/* LISTEN OSC */
2021-10-05 07:24:01 +11:00
#include <stdio.h>
#include <lo/lo.h>
#define LOCAL_PORT "9000"
int main(int argc, char *argv[])
{
2021-10-05 08:28:19 +11:00
lo_server_thread st;
2021-10-05 07:24:01 +11:00
2021-10-05 08:28:19 +11:00
st = lo_server_thread_new(LOCAL_PORT, NULL);
2021-10-05 07:24:01 +11:00
return 0;
}