git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@972 7ae35d74-ebe9-4afe-98af-79ac388436b8
Hamlib-1.1.3
Stéphane Fillod, F8CFE 2002-02-27 23:17:22 +00:00
rodzic 48680b098a
commit 0d4dbe965c
3 zmienionych plików z 5 dodań i 3 usunięć

Wyświetl plik

@ -1,4 +1,4 @@
AORSRCLIST = ar8200.c ar8000.c
AORSRCLIST = ar8200.c ar8000.c ar5000.c
lib_LTLIBRARIES = libhamlib-aor.la
libhamlib_aor_la_SOURCES = $(AORSRCLIST) aor.c

Wyświetl plik

@ -2,7 +2,7 @@
* Hamlib AOR backend - main file
* Copyright (c) 2000,2001,2002 by Stephane Fillod
*
* $Id: aor.c,v 1.18 2002-01-09 23:11:16 fillods Exp $
* $Id: aor.c,v 1.19 2002-02-27 23:17:22 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
@ -420,6 +420,7 @@ int initrigs_aor(void *be_handle)
rig_register(&ar8200_caps);
rig_register(&ar8000_caps);
rig_register(&ar5000_caps);
return RIG_OK;
}

Wyświetl plik

@ -2,7 +2,7 @@
* Hamlib AOR backend - main header
* Copyright (c) 2000,2001,2002 by Stephane Fillod
*
* $Id: aor.h,v 1.10 2002-01-09 23:11:16 fillods Exp $
* $Id: aor.h,v 1.11 2002-02-27 23:17:22 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
@ -40,6 +40,7 @@ const char *aor_get_info(RIG *rig);
extern const struct rig_caps ar8200_caps;
extern const struct rig_caps ar8000_caps;
extern const struct rig_caps ar5000_caps;
extern BACKEND_EXPORT(int) initrigs_aor(void *be_handle);