Une collection de notes diverses sur des trucs et astuces pour faire des choses avec un ordinateur...
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
/* 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; |
|
}
|
|
|