merge new MTDM code from Fons' latest release.
[jack2.git] / common / JackSession.h
blobaf78978afad79bd28ee5de3949a6a570d77db918
1 /*
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__
24 #include <stdint.h>
26 #ifdef __cplusplus
27 extern "C" {
28 #endif
30 enum JackSessionEventType {
31 JackSessionSave = 1,
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;
49 char *command_line;
50 jack_session_flags_t flags;
51 uint32_t future;
54 typedef struct _jack_session_event jack_session_event_t;
56 typedef void (*JackSessionCallback)(jack_session_event_t *event,
57 void *arg);
59 typedef struct {
60 const char *uuid;
61 const char *client_name;
62 const char *command;
63 jack_session_flags_t flags;
64 } jack_session_command_t;
66 #ifdef __cplusplus
68 #endif
69 #endif