1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
|
/*
* mkrigstruct.c - Copyright (C) 2005 Joop Stakenborg <pg4i@amsat.org>
*
* 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
*/
/* This little program generates two structs used in src/hamlib-utils.c
compile with: "gcc -o mkrigstruct mkrigstruct.c -lhamlib" */
#include <stdio.h>
#include <hamlib/rig.h>
int print_caps_sum (const struct rig_caps *caps, void *data)
{
printf ("\t{%d, \"%s\"},\n",caps->rig_model,caps->model_name);
return -1; /* !=0, we want them all ! */
}
int main (int argc, char *argv[])
{
int status;
rig_set_debug (RIG_DEBUG_NONE);
rig_load_all_backends ();
printf ("/* The following 2 structs are generated by mkrigstruct */\n"
"struct rig_id {\n"
"\tconst gint modelnr;\n"
"\tconst gchar *modelname;\n"
"};\n\n");
printf ("static const struct rig_id rig_id_list[] = {\n");
status = rig_list_foreach (print_caps_sum, NULL);
printf ("\t{0, NULL}, /* end marker */\n"
"};\n");
return 0;
}
|