2 Copyright (C) 2001 Paul Davis
3 Copyright (C) 2004 Jack O'Quin
4 Copyright (C) 2010 Torben Hohn
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU Lesser General Public License as published by
8 the Free Software Foundation; either version 2.1 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21 #ifndef __jack_session_int_h__
22 #define __jack_session_int_h__
30 enum JackSessionEventType
{
32 JackSessionSaveAndQuit
= 2,
33 JackSessionSaveTemplate
= 3
36 typedef enum JackSessionEventType jack_session_event_type_t
;
38 enum JackSessionFlags
{
39 JackSessionSaveError
= 0x01,
40 JackSessionNeedTerminal
= 0x02
43 typedef enum JackSessionFlags jack_session_flags_t
;
45 struct _jack_session_event
{
46 jack_session_event_type_t type
;
47 const char *session_dir
;
48 const char *client_uuid
;
50 jack_session_flags_t flags
;
54 typedef struct _jack_session_event jack_session_event_t
;
56 typedef void (*JackSessionCallback
)(jack_session_event_t
*event
,
61 const char *client_name
;
63 jack_session_flags_t flags
;
64 } jack_session_command_t
;