75b221c0e3
main code and make them optionally buildable.
14 lines
271 B
C
14 lines
271 B
C
#ifndef SDR_RTLSDR_H
|
|
#define SDR_RTLSDR_H
|
|
|
|
// Support for DVB-T dongles in SDR mode via librtlsdr
|
|
|
|
void rtlsdrInitConfig();
|
|
void rtlsdrShowHelp();
|
|
bool rtlsdrOpen();
|
|
void rtlsdrRun();
|
|
void rtlsdrClose();
|
|
bool rtlsdrHandleOption(int argc, char **argv, int *jptr);
|
|
|
|
#endif
|