cfd51a71fa5d10c65c0de7821ce4f58d7a4004d3
[melted] / 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 "miracle_connection.h"
26
27 #ifdef __cplusplus
28 extern "C"
29 {
30 #endif
31
32 extern response_codes miracle_list( command_argument );
33 extern response_codes miracle_load( command_argument );
34 extern response_codes miracle_insert( command_argument );
35 extern response_codes miracle_remove( command_argument );
36 extern response_codes miracle_clean( command_argument );
37 extern response_codes miracle_wipe( command_argument );
38 extern response_codes miracle_clear( command_argument );
39 extern response_codes miracle_move( command_argument );
40 extern response_codes miracle_append( command_argument );
41 extern response_codes miracle_play( command_argument );
42 extern response_codes miracle_stop( command_argument );
43 extern response_codes miracle_pause( command_argument );
44 extern response_codes miracle_rewind( command_argument );
45 extern response_codes miracle_step( command_argument );
46 extern response_codes miracle_goto( command_argument );
47 extern response_codes miracle_ff( command_argument );
48 extern response_codes miracle_set_in_point( command_argument );
49 extern response_codes miracle_set_out_point( command_argument );
50 extern response_codes miracle_get_unit_status( command_argument );
51 extern response_codes miracle_set_unit_property( command_argument );
52 extern response_codes miracle_get_unit_property( command_argument );
53 extern response_codes miracle_transfer( command_argument );
54 extern response_codes miracle_push( command_argument, mlt_service );
55 extern response_codes miracle_receive( command_argument, char * );
56
57 #ifdef __cplusplus
58 }
59 #endif
60
61 #endif