kopia lustrzana https://github.com/Hamlib/Hamlib
IMPORTANT: freq_t type changed from integer to real, and setting_t type reduced from 64bits to 32 bits
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@1648 7ae35d74-ebe9-4afe-98af-79ac388436b8Hamlib-1.2.0
rodzic
3f0ace4dbc
commit
e3f15af93a
|
@ -2,7 +2,7 @@
|
|||
% * Hamlib Interface - RPC definitions
|
||||
% * Copyright (c) 2000-2002 by Stephane Fillod and Frank Singleton
|
||||
% *
|
||||
% * $Id: rpcrig.x,v 1.8 2003-07-03 06:46:27 fillods Exp $
|
||||
% * $Id: rpcrig.x,v 1.9 2004-01-15 23:17:35 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
|
||||
|
@ -31,11 +31,15 @@
|
|||
|
||||
typedef unsigned int model_x;
|
||||
typedef int vfo_x;
|
||||
#if 0
|
||||
#ifdef __NetBSD__
|
||||
typedef longlong_t freq_x;
|
||||
#else
|
||||
typedef hyper freq_x;
|
||||
#endif
|
||||
#else
|
||||
typedef double freq_x;
|
||||
#endif
|
||||
typedef unsigned int rmode_x;
|
||||
typedef int pbwidth_x;
|
||||
typedef unsigned long split_x;
|
||||
|
@ -43,11 +47,15 @@ typedef int ptt_x;
|
|||
typedef int dcd_x;
|
||||
typedef long vfo_op_x;
|
||||
typedef long shortfreq_x;
|
||||
#if 0
|
||||
#ifdef __NetBSD__
|
||||
typedef u_longlong_t setting_x;
|
||||
#else
|
||||
typedef unsigned hyper setting_x;
|
||||
#endif
|
||||
#else
|
||||
typedef unsigned long setting_x;
|
||||
#endif
|
||||
typedef long ant_x;
|
||||
typedef long ann_x;
|
||||
typedef int rptr_shift_x;
|
||||
|
|
Ładowanie…
Reference in New Issue