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.
18 lines
342 B
18 lines
342 B
/* SEND OSC */ |
|
|
|
#include <stdio.h> |
|
#include <lo/lo.h> |
|
|
|
#define REMOTE_HOST "localhost" |
|
#define REMOTE_PORT "9000" |
|
|
|
int main(int argc, char *argv[]) |
|
{ |
|
lo_address loana; |
|
int foo; |
|
|
|
loana = lo_address_new(REMOTE_HOST, REMOTE_PORT); |
|
foo = lo_send(loana, "/dev/kmem", "is", 61, "meg, efface !"); |
|
fprintf(stderr, "foo %d\n", foo); |
|
return 0; |
|
}
|
|
|