TetaTricks/code/listen-osc.c

16 lines
204 B
C
Raw Normal View History

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