X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/b0e09a2cd9a05a002222d79fb71848f4c7820ff3..127c6c59e89dbdf96a93659104efd91428569a06:/lib/components/scan.h diff --git a/lib/components/scan.h b/lib/components/scan.h index 04218b98..9ce6539f 100644 --- a/lib/components/scan.h +++ b/lib/components/scan.h @@ -23,6 +23,7 @@ public: ~eComponentScan(); PSignal0 statusChanged; + PSignal0 newService; /* progress between 0 and 100 */ int getProgress(); @@ -33,6 +34,9 @@ public: /* true when done or error */ int isDone(); + /* get last added service */ + void getLastServiceName(std::string &SWIG_OUTPUT); + int getError(); void clear(); @@ -42,7 +46,7 @@ public: /* please keep the flags in sync with lib/dvb/scan.h ! */ enum { scanNetworkSearch=1 }; - int start(int flags=0); + int start(int feid, int flags=0); }; #endif