removed useless vfo arg to set_trn/get_trn funcs

git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@784 7ae35d74-ebe9-4afe-98af-79ac388436b8
Hamlib-1.1.3
Stéphane Fillod, F8CFE 2001-12-20 08:02:01 +00:00
rodzic afa88cc5ed
commit 4bb22483ab
2 zmienionych plików z 4 dodań i 4 usunięć

Wyświetl plik

@ -2,7 +2,7 @@
* Hamlib JRC backend - main file
* Copyright (c) 2001 by Stephane Fillod
*
* $Id: jrc.c,v 1.1 2001-12-17 22:40:34 fillods Exp $
* $Id: jrc.c,v 1.2 2001-12-20 08:02:01 fillods Exp $
*
* This library is free software; you can redistribute it and/or modify
* it under the terms of the GNU Library General Public License as
@ -569,7 +569,7 @@ int jrc_get_dcd(RIG *rig, vfo_t vfo, dcd_t *dcd)
* jrc_set_trn
* Assumes rig!=NULL
*/
int jrc_set_trn(RIG *rig, vfo_t vfo, int trn)
int jrc_set_trn(RIG *rig, int trn)
{
unsigned char trnbuf[16];
int trn_len;

Wyświetl plik

@ -2,7 +2,7 @@
* Hamlib JRC backend - main header
* Copyright (c) 2001 by Stephane Fillod
*
* $Id: jrc.h,v 1.1 2001-12-17 22:40:34 fillods Exp $
* $Id: jrc.h,v 1.2 2001-12-20 08:02:01 fillods Exp $
*
* This library is free software; you can redistribute it and/or modify
* it under the terms of the GNU Library General Public License as
@ -42,7 +42,7 @@ int jrc_get_level(RIG *rig, vfo_t vfo, setting_t level, value_t *val);
int jrc_set_parm(RIG *rig, vfo_t vfo, setting_t parm, value_t val);
int jrc_get_parm(RIG *rig, vfo_t vfo, setting_t parm, value_t *val);
int jrc_get_dcd(RIG *rig, vfo_t vfo, dcd_t *dcd);
int jrc_set_trn(RIG *rig, vfo_t vfo, int trn);
int jrc_set_trn(RIG *rig, int trn);
int jrc_set_mem(RIG *rig, vfo_t vfo, int ch);
int jrc_set_powerstat(RIG *rig, powerstat_t status);
int jrc_reset(RIG *rig, reset_t reset);