]> Shamusworld >> Repos - virtualjaguar/blobdiff - src/gui/filethread.h
Minor corrections to the file DB.
[virtualjaguar] / src / gui / filethread.h
index 67c8d5eca6cf1fc3c2e11544cf908c438772706b..dba38a3a3cce5049b25af1e03f3e6eb9b19f091e 100644 (file)
@@ -15,20 +15,24 @@ class FileThread: public QThread
        public:
                FileThread(QObject * parent = 0);
                ~FileThread();
-               void Go(void);
+               void Go(bool allowUnknown = false);
 
        signals:
                void FoundAFile(unsigned long index);
                void FoundAFile2(unsigned long index, QString filename, QImage * label, unsigned long);
+               void FoundAFile3(unsigned long index, QString filename, QImage * label, unsigned long, bool, unsigned long, unsigned long);
 
        protected:
                void run(void);
+               void HandleFile(QFileInfo);
+               void HandleBIOSFile(uint8 *, uint32);
                uint32 FindCRCIndexInFileList(uint32);
 
        private:
                QMutex mutex;
                QWaitCondition condition;
                bool abort;
+               bool allowUnknownSoftware;
 };
 
 #endif // __FILETHREAD_H__