]> git.rkrishnan.org Git - dttsp.git/blob - jDttSP/win/common.h
Initial revision
[dttsp.git] / jDttSP / win / common.h
1 /* common.h\r
2 a simple way to get all the necessary includes\r
3    \r
4 This file is part of a program that implements a Software-Defined Radio.\r
5 \r
6 Copyright (C) 2004 by Frank Brickle, AB2KT and Bob McGwier, N4HY\r
7 \r
8 This program is free software; you can redistribute it and/or modify\r
9 it under the terms of the GNU General Public License as published by\r
10 the Free Software Foundation; either version 2 of the License, or\r
11 (at your option) any later version.\r
12 \r
13 This program is distributed in the hope that it will be useful,\r
14 but WITHOUT ANY WARRANTY; without even the implied warranty of\r
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
16 GNU General Public License for more details.\r
17 \r
18 You should have received a copy of the GNU General Public License\r
19 along with this program; if not, write to the Free Software\r
20 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA\r
21 \r
22 The authors can be reached by email at\r
23 \r
24 ab2kt@arrl.net\r
25 or\r
26 rwmcgwier@comcast.net\r
27 \r
28 or by paper mail at\r
29 \r
30 The DTTS Microwave Society\r
31 6 Kathleen Place\r
32 Bridgewater, NJ 08807\r
33 */\r
34 \r
35 #ifndef _common_h\r
36 \r
37 #define _common_h\r
38 \r
39 #include <fromsys.h>\r
40 #include <banal.h>\r
41 #include <splitfields.h>\r
42 #include <datatypes.h>\r
43 #include <bufvec.h>\r
44 #include <cxops.h>\r
45 #include <ringb.h>\r
46 #include <chan.h>\r
47 #include <fft.h>\r
48 #include <lmadf.h>\r
49 #include <fftw.h>\r
50 #include <ovsv.h>\r
51 #include <filter.h>\r
52 #include <oscillator.h>\r
53 #include <digitalagc.h>\r
54 #include <am_demod.h>\r
55 #include <fm_demod.h>\r
56 #include <noiseblanker.h>\r
57 #include <correctIQ.h>\r
58 #include <crc16.h>\r
59 #include <speechproc.h>\r
60 #include <spottone.h>\r
61 #include <update.h>\r
62 #include <power_spectrum.h>\r
63 #include <meter.h>\r
64 #ifdef _WINDOWS\r
65 #include <ringb.h>\r
66 #include <windows.h>\r
67 typedef long pid_t;\r
68 typedef long uid_t;\r
69 typedef LPDWORD pthread_t;\r
70 typedef HANDLE sem_t;\r
71 #define DLLVERS\r
72 //#define PROCESSVERS\r
73 #define NEWSPLIT\r
74 #endif\r
75 \r
76 #include <sdrexport.h>\r
77 #endif\r
78 \r