From 02300bfd74e31dba06359117b3556da372b1038d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Fillod=2C=20F8CFE?= Date: Sun, 8 Oct 2000 21:39:58 +0000 Subject: [PATCH] added new caps prototypes git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@192 7ae35d74-ebe9-4afe-98af-79ac388436b8 --- icom/icom.h | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/icom/icom.h b/icom/icom.h index 33b70d74d..f165287c2 100644 --- a/icom/icom.h +++ b/icom/icom.h @@ -6,7 +6,7 @@ * via serial interface to an ICOM using the "CI-V" interface. * * - * $Id: icom.h,v 1.3 2000-10-01 12:37:50 f4cfe Exp $ + * $Id: icom.h,v 1.4 2000-10-08 21:39:58 f4cfe Exp $ * * * This program is free software; you can redistribute it and/or @@ -38,6 +38,17 @@ int icom_init(RIG *rig); int icom_cleanup(RIG *rig); int icom_set_freq(RIG *rig, freq_t freq); int icom_get_freq(RIG *rig, freq_t *freq); +int icom_set_mode(RIG *rig, rmode_t mode); +int icom_get_mode(RIG *rig, rmode_t *mode); +int icom_set_vfo(RIG *rig, vfo_t vfo); +int icom_get_strength(RIG *rig, int *strength); +int icom_decode_event(RIG *rig); + +extern const struct rig_caps ic706_caps; +extern const struct rig_caps ic706mkii_caps; +extern const struct rig_caps ic706mkiig_caps; + +extern int init_icom(void *be_handle); #endif /* _ICOM_H */