new prototypes (*_level,*_channel)

git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@227 7ae35d74-ebe9-4afe-98af-79ac388436b8
Hamlib-1.1.0
Stéphane Fillod, F8CFE 2000-10-16 22:35:57 +00:00
rodzic 64dee174a5
commit ab4476aebb
1 zmienionych plików z 5 dodań i 2 usunięć

Wyświetl plik

@ -6,7 +6,7 @@
* via serial interface to an ICOM using the "CI-V" interface.
*
*
* $Id: icom.h,v 1.5 2000-10-10 21:58:31 f4cfe Exp $
* $Id: icom.h,v 1.6 2000-10-16 22:35:57 f4cfe Exp $
*
*
* This program is free software; you can redistribute it and/or
@ -53,7 +53,10 @@ int icom_set_ts(RIG *rig, unsigned long ts);
int icom_get_ts(RIG *rig, unsigned long *ts);
int icom_set_ptt(RIG *rig, ptt_t ptt);
int icom_get_ptt(RIG *rig, ptt_t *ptt);
int icom_get_strength(RIG *rig, int *strength);
int icom_set_level(RIG *rig, setting_t set, value_t val);
int icom_get_level(RIG *rig, setting_t set, value_t *val);
int icom_set_channel(RIG *rig, const channel_t *chan);
int icom_get_channel(RIG *rig, channel_t *chan);
int icom_decode_event(RIG *rig);
extern const struct rig_caps ic706_caps;