mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-14 02:26:59 -07:00
fixing the crash on exit
This commit is contained in:
parent
a5eb7820a5
commit
5acd195d0f
7 changed files with 75 additions and 49 deletions
|
@ -118,4 +118,17 @@ class ProxGuiQT : public QObject
|
|||
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 = false;
|
||||
};
|
||||
|
||||
#endif // PROXGUI_QT
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue