00001 /* From linuxtv.org's szap utility, just cleaned up a bit and made more dvbstreamer like. */ 00002 #ifndef _LNB_H 00003 #define _LNB_H 00004 00008 typedef struct LNBInfo_s { 00009 char *name; 00010 char **desc; 00011 unsigned long lowFrequency; 00012 unsigned long highFrequency; 00013 unsigned long switchFrequency; 00014 }LNBInfo_t; 00015 00020 LNBInfo_t *LNBEnumerate(int curno); 00021 00027 int LNBDecode(char *str, LNBInfo_t *lnb); 00028 00029 #endif