16 lines
204 B
C
16 lines
204 B
C
/* LISTEN OSC */
|
|
|
|
#include <stdio.h>
|
|
#include <lo/lo.h>
|
|
|
|
#define LOCAL_PORT "9000"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
lo_server_thread st;
|
|
|
|
st = lo_server_thread_new(LOCAL_PORT, NULL);
|
|
|
|
return 0;
|
|
}
|