1 /*
2  * gsat - a realtime satellite tracking graphical frontend to predict
3  *
4  * Copyright (C) 2001 by Xavier Crehueras, EB3CZS
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License
8  * as published by the Free Software Foundation; either version 2
9  * of the License, or (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
18  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
19  *
20  * Look at the README for more information on the program.
21  */
22 
23 /* Plugin functions */
24 
25 void close_uplink_plugin( void );
26 int open_uplink_plugin( char * plugin );
27 void close_downlink_plugin( void );
28 int open_downlink_plugin( char * plugin );
29 void close_beacon_plugin( void );
30 int open_beacon_plugin( char * plugin );
31 int check_radio_plugin_file( const void * plugdir );
32 void search_radio_plugins( void );
33 void close_rotor_plugin( void );
34 int open_rotor_plugin( char * plugin );
35 int check_rotor_plugin_file( const void * plugdir );
36 void search_rotor_plugins( void );
37