aboutsummaryrefslogtreecommitdiff
path: root/src/lib/soundlibs.h
diff options
context:
space:
mode:
authorMike Crute <mcrute@gmail.com>2015-07-28 21:02:14 -0700
committerMike Crute <mcrute@gmail.com>2015-07-28 21:02:14 -0700
commita771c74e76a22099bbedee3ff32829c465429d90 (patch)
tree77c957b0974f96444012185e23edcc606719c54f /src/lib/soundlibs.h
downloadhd24tools-a771c74e76a22099bbedee3ff32829c465429d90.tar.bz2
hd24tools-a771c74e76a22099bbedee3ff32829c465429d90.tar.xz
hd24tools-a771c74e76a22099bbedee3ff32829c465429d90.zip
Initial importHEADmaster
Diffstat (limited to 'src/lib/soundlibs.h')
-rw-r--r--src/lib/soundlibs.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/lib/soundlibs.h b/src/lib/soundlibs.h
new file mode 100644
index 0000000..faa7231
--- /dev/null
+++ b/src/lib/soundlibs.h
@@ -0,0 +1,15 @@
1#ifdef LIBJACK
2# include <jack/jack.h>
3# include <jack/transport.h>
4#else
5# include "../lib/nojack.h"
6#endif
7
8#ifdef LIBPORTAUDIO
9# include "portaudio.h"
10# define portaudiostreamtype PaStream
11#else
12# define portaudiostreamtype void
13# define PaTime unsigned long
14#endif
15