You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
MangoHud/src/notify.h

11 lines
208 B
C

#include <thread>
#include "overlay_params.h"
struct notify_thread
{
overlay_params *params = nullptr;
bool quit = false;
};
extern pthread_t fileChange;
extern void *fileChanged(void *params_void);