/* * global_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 _GLOBAL_COMMANDS_H_ #define _GLOBAL_COMMANDS_H_ #include #include "miracle_unit.h" #include "miracle_connection.h" #ifdef __cplusplus extern "C" { #endif extern miracle_unit miracle_get_unit( int ); extern void miracle_delete_unit( int ); extern void miracle_delete_all_units( void ); extern int miracle_unit_status( int n, valerie_status status, int root_offset ); //extern void raw1394_start_service_threads( void ); //extern void raw1394_stop_service_threads( void ); extern response_codes miracle_add_unit( command_argument ); extern response_codes miracle_list_nodes( command_argument ); extern response_codes miracle_list_units( command_argument ); extern response_codes miracle_list_clips( command_argument ); extern response_codes miracle_set_global_property( command_argument ); extern response_codes miracle_get_global_property( command_argument ); #ifdef __cplusplus } #endif #endif