]> Shamusworld >> Repos - virtualjaguar/blobdiff - src/gui/filethread.h
Small fix to allow app.cpp to compile on win32.
[virtualjaguar] / src / gui / filethread.h
index 6690dc6b0bf3fbb260e9b174b2588a919a4268b0..67c8d5eca6cf1fc3c2e11544cf908c438772706b 100644 (file)
@@ -8,9 +8,6 @@
 #include <QtCore>
 #include "types.h"
 
-// Forward declarations
-//class QListWidget;
-
 class FileThread: public QThread
 {
        Q_OBJECT
@@ -18,30 +15,20 @@ class FileThread: public QThread
        public:
                FileThread(QObject * parent = 0);
                ~FileThread();
-//             void Go(QListWidget * lw);
                void Go(void);
 
        signals:
                void FoundAFile(unsigned long index);
+               void FoundAFile2(unsigned long index, QString filename, QImage * label, unsigned long);
 
        protected:
                void run(void);
                uint32 FindCRCIndexInFileList(uint32);
 
        private:
-//             QListWidget * listWidget;
                QMutex mutex;
                QWaitCondition condition;
                bool abort;
 };
 
-struct RomIdentifier
-{
-       const uint32 crc32;
-       const char name[128];
-       const char file[128];
-};
-
-extern RomIdentifier romList[];
-
 #endif // __FILETHREAD_H__