]> git.sesse.net Git - mlt/blob - src/miracle/miracle_commands.h
Merge ../mlt++
[mlt] / src / miracle / miracle_commands.h
1 /*
2  * global_commands.h
3  * Copyright (C) 2002-2003 Ushodaya Enterprises Limited
4  * Author: Dan Dennedy <dan@dennedy.org>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
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 General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software Foundation,
18  * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19  */
20
21
22 #ifndef _GLOBAL_COMMANDS_H_
23 #define _GLOBAL_COMMANDS_H_
24
25 #include <valerie/valerie_status.h>
26 #include "miracle_unit.h"
27 #include "miracle_connection.h"
28
29 #ifdef __cplusplus
30 extern "C"
31 {
32 #endif
33
34 extern miracle_unit miracle_get_unit( int );
35 extern void miracle_delete_unit( int );
36 extern void miracle_delete_all_units( void );
37 extern int miracle_unit_status( int n, valerie_status status, int root_offset );
38 //extern void raw1394_start_service_threads( void );
39 //extern void raw1394_stop_service_threads( void );
40
41 extern response_codes miracle_add_unit( command_argument );
42 extern response_codes miracle_list_nodes( command_argument );
43 extern response_codes miracle_list_units( command_argument );
44 extern response_codes miracle_list_clips( command_argument );
45 extern response_codes miracle_set_global_property( command_argument );
46 extern response_codes miracle_get_global_property( command_argument );
47
48 #ifdef __cplusplus
49 }
50 #endif
51
52 #endif