dl-fldigi/src/include/hamlib.h

37 wiersze
714 B
C
Czysty Zwykły widok Historia

2007-06-22 22:04:50 +00:00
/*
* hamlib.h -- Hamlib (rig control) interface
*/
#ifndef _HAMLIB_H
#define _HAMLIB_H
#include <sys/ipc.h>
#include <sys/msg.h>
#include <sys/shm.h>
#include <sys/time.h>
#include <iostream>
#include <string>
#include <list>
#include <hamlib/rig.h>
using namespace std;
extern void get_rignames();
extern void get_riglist();
extern void hamlib_close();
extern bool hamlib_init(bool bPtt);
extern void hamlib_set_ptt(int);
2007-06-22 22:28:11 +00:00
extern void hamlib_set_qsy(long long f, long long fmid);
2007-06-22 22:04:50 +00:00
extern int hamlib_setfreq(long int);
extern int hamlib_setmode(rmode_t);
extern rmode_t hamlib_getmode();
extern int hamlib_setwidth(pbwidth_t);
extern pbwidth_t hamlib_getwidth();
extern list<string> rignames;
#endif