1 /*
2   rakarrak - a guitar efects software
3 
4   jack.h  -  some jack definitions
5   Copyright (C) 2008-2010 Josep Andreu
6   Author: Josep Andreu
7 
8   This program is free software; you can redistribute it and/or modify
9   it under the terms of version 2 of the GNU General Public License
10   as published by the Free Software Foundation.
11 
12   This program is distributed in the hope that it will be useful,
13   but WITHOUT ANY WARRANTY; without even the implied warranty of
14   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15   GNU General Public License (version 2) for more details.
16 
17   You should have received a copy of the GNU General Public License
18 (version2)
19   along with this program; if not, write to the Free Software Foundation,
20   Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
21 
22 */
23 #ifndef JACK_OUTPUT_H
24 #define JACK_OUTPUT_H
25 
26 #include "global.h"
27 
28 #ifdef JACK_SESSION
29 #include <jack/session.h>
30 #endif
31 
32 int JACKstart (RKR * rkr_, jack_client_t * jackclient);
33 void JACKfinish ();
34 int timebase(jack_transport_state_t state, jack_position_t *pos, void *arg);
35 void actualiza_tap(double val);
36 void jackshutdown (void *arg);
37 
38 #endif
39