This website works better with JavaScript.
Home
Help
Sign In
jackaudio
/
example-clients
mirror of
https://github.com/jackaudio/example-clients
Watch
1
Star
0
Fork
0
Code
Releases
0
Activity
Browse Source
Merge pull request
#1
from falkTX/master
Import simple_session_client.c Windows fix from jack2
pull/2/merge
pauldavisthefirst
11 years ago
parent
7c2f9ee5f8
3c9fbd706c
commit
d53945f7ed
1 changed files
with
6 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+6
-1
simple_session_client.c
+ 6
- 1
simple_session_client.c
View File
@@ -10,8 +10,10 @@
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#include <inttypes.h>
#include <jack/jack.h>
#include <jack/types.h>
#include <jack/session.h>
jack_port_t *input_port;
@@ -193,8 +195,11 @@ main (int argc, char *argv[])
/* keep running until until we get a quit event */
while (!simple_quit)
#ifdef WIN32
Sleep(1*1000);
#else
sleep(1);
#endif
jack_client_close (client);
exit (0);
Write
Preview
Loading…
Cancel
Save