/* * unit_commands.h * Copyright (C) 2002-2003 Ushodaya Enterprises Limited * Author: Dan Dennedy * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #ifndef _UNIT_COMMANDS_H_ #define _UNIT_COMMANDS_H_ #include "miracle_connection.h" #ifdef __cplusplus extern "C" { #endif extern response_codes miracle_list( command_argument ); extern response_codes miracle_load( command_argument ); extern response_codes miracle_insert( command_argument ); extern response_codes miracle_remove( command_argument ); extern response_codes miracle_clean( command_argument ); extern response_codes miracle_wipe( command_argument ); extern response_codes miracle_clear( command_argument ); extern response_codes miracle_move( command_argument ); extern response_codes miracle_append( command_argument ); extern response_codes miracle_play( command_argument ); extern response_codes miracle_stop( command_argument ); extern response_codes miracle_pause( command_argument ); extern response_codes miracle_rewind( command_argument ); extern response_codes miracle_step( command_argument ); extern response_codes miracle_goto( command_argument ); extern response_codes miracle_ff( command_argument ); extern response_codes miracle_set_in_point( command_argument ); extern response_codes miracle_set_out_point( command_argument ); extern response_codes miracle_get_unit_status( command_argument ); extern response_codes miracle_set_unit_property( command_argument ); extern response_codes miracle_get_unit_property( command_argument ); extern response_codes miracle_transfer( command_argument ); extern response_codes miracle_push( command_argument, mlt_service ); extern response_codes miracle_receive( command_argument, char * ); #ifdef __cplusplus } #endif #endif