projects
/
proxmark3-svn
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
fix MacOS compile errors by replacing memalign() with posix_memalign()
[proxmark3-svn]
/
client
/
proxguiqt.h
diff --git
a/client/proxguiqt.h
b/client/proxguiqt.h
index 8ea4d312a2dda96455091e811b2bfb1ce942eca9..8a3b8cfccf5d813ea431b29bb012e2e2e5de004e 100644
(file)
--- a/
client/proxguiqt.h
+++ b/
client/proxguiqt.h
@@
-11,6
+11,9
@@
#ifndef PROXGUI_QT
#define PROXGUI_QT
#ifndef PROXGUI_QT
#define PROXGUI_QT
+#include <stdint.h>
+#include <string.h>
+
#include <QApplication>
#include <QPushButton>
#include <QObject>
#include <QApplication>
#include <QPushButton>
#include <QObject>
@@
-115,4
+118,17
@@
class ProxGuiQT : public QObject
void HideGraphWindowSignal(void);
void ExitSignal(void);
};
void HideGraphWindowSignal(void);
void ExitSignal(void);
};
+
+
+class WorkerThread : public QThread {
+ Q_OBJECT;
+public:
+ WorkerThread(char*, bool);
+ ~WorkerThread();
+ void run();
+private:
+ char *script_cmds_file = NULL;
+ bool usb_present;
+};
+
#endif // PROXGUI_QT
#endif // PROXGUI_QT
Impressum
,
Datenschutz