mirror of
https://github.com/J-D-K/JKSV.git
synced 2026-04-25 16:15:11 -05:00
12 lines
235 B
C++
12 lines
235 B
C++
#pragma once
|
|
|
|
//Misc stuff for new menu code
|
|
typedef void (*funcPtr)(void *);
|
|
typedef struct
|
|
{
|
|
bool running = false, finished = false;
|
|
Thread *thrdPtr = NULL;
|
|
void *argPtr = NULL;
|
|
std::string status = "";
|
|
} threadInfo;
|