comparison src/checksignal.c @ 145:4e39ce051c57

Able to compile the checksignal. Fixed Makefile(pt1_lnbd compilation).
author Naoya OYAMA <naoya.oyama@gmail.com>
date Thu, 16 Aug 2012 21:57:34 +0900
parents 9c7bc6c0327e
children 7d8a5bb874ad
comparison
equal deleted inserted replaced
144:bf96eac4dbb1 145:4e39ce051c57
37 #define MAX_RETRY (2) 37 #define MAX_RETRY (2)
38 38
39 /* type definitions */ 39 /* type definitions */
40 typedef int boolean; 40 typedef int boolean;
41 41
42 typedef struct thread_data {
43 int ch;
44 int lnb; /* LNB voltage */
45 int tfd; /* tuner fd */
46 ISDB_T_FREQ_CONV_TABLE *table;
47 } thread_data;
48
49 /* globals */ 42 /* globals */
50 boolean f_exit = FALSE; 43 boolean f_exit = FALSE;
51 boolean use_bell = FALSE; 44 boolean use_bell = FALSE;
52 45
53 /* prototypes */ 46 /* prototypes */