]> git.sesse.net Git - mlt/blob - src/miracle/miracle_unit_commands.h
Initial revision
[mlt] / src / miracle / miracle_unit_commands.h
1 /*
2  * unit_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 _UNIT_COMMANDS_H_
23 #define _UNIT_COMMANDS_H_
24
25 #include "dvconnection.h"
26
27 #ifdef __cplusplus
28 extern "C"
29 {
30 #endif
31
32 extern response_codes dv1394d_list( command_argument );
33 extern response_codes dv1394d_load( command_argument );
34 extern response_codes dv1394d_insert( command_argument );
35 extern response_codes dv1394d_remove( command_argument );
36 extern response_codes dv1394d_clean( command_argument );
37 extern response_codes dv1394d_move( command_argument );
38 extern response_codes dv1394d_append( command_argument );
39 extern response_codes dv1394d_play( command_argument );
40 extern response_codes dv1394d_stop( command_argument );
41 extern response_codes dv1394d_pause( command_argument );
42 extern response_codes dv1394d_rewind( command_argument );
43 extern response_codes dv1394d_step( command_argument );
44 extern response_codes dv1394d_goto( command_argument );
45 extern response_codes dv1394d_ff( command_argument );
46 extern response_codes dv1394d_set_in_point( command_argument );
47 extern response_codes dv1394d_set_out_point( command_argument );
48 extern response_codes dv1394d_get_unit_status( command_argument );
49 extern response_codes dv1394d_set_unit_property( command_argument );
50 extern response_codes dv1394d_get_unit_property( command_argument );
51 extern response_codes dv1394d_transfer( command_argument );
52
53 #ifdef __cplusplus
54 }
55 #endif
56
57 #endif