~ubuntu-branches/ubuntu/vivid/flrig/vivid

« back to all changes in this revision

Viewing changes to src/include/rig.h

  • Committer: Package Import Robot
  • Author(s): Kamal Mostafa
  • Date: 2014-10-25 11:17:10 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20141025111710-n32skgya3l9u1brw
Tags: 1.3.17-1
* New upstream release (Closes: #761839)
* Debian Standards-Version: 3.9.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
 
24
24
#include <string>
25
25
#include <sys/types.h>
26
 
#include <pthread.h>
27
26
 
28
27
#include <FL/Fl.H>
29
28
#include <FL/Fl_Double_Window.H>
41
40
 
42
41
#include "config.h"
43
42
 
 
43
#include "threads.h"
 
44
 
44
45
#include "FreqControl.h"
45
46
#include "rigpanel.h"
46
47
#include "rig_io.h"
62
63
extern pthread_t *digi_thread;
63
64
extern pthread_mutex_t mutex_serial;
64
65
extern pthread_mutex_t mutex_xmlrpc;
65
 
extern pthread_mutex_t mutex_queX;
66
66
extern pthread_mutex_t mutex_queA;
67
67
extern pthread_mutex_t mutex_queB;
68
68
extern pthread_mutex_t mutex_ptt;
71
71
extern bool XML_DEBUG;
72
72
extern bool EXPAND_CONTROLS;
73
73
 
74
 
enum UISIZE {small_ui, wide_ui};
 
74
enum UISIZE {small_ui, wide_ui, touch_ui};
75
75
 
76
76
#endif