ref: 1641764037030319b1ca4f1d9165a0169c2c3dcb
dir: /src/ft2_events.h/
#pragma once
#include <SDL2/SDL.h>
#include <stdint.h>
#include <stdbool.h>
enum
{
EVENT_NONE = 0,
EVENT_LOADMUSIC_ARGV = 1,
EVENT_LOADMUSIC_DRAGNDROP = 2,
EVENT_LOADMUSIC_DISKOP = 3,
};
void handleThreadEvents(void);
void readInput(void);
void handleEvents(void);
void setupCrashHandler(void);
void handleWaitVblQuirk(SDL_Event *event);
#ifdef _WIN32
bool handleSingleInstancing(int32_t argc, char **argv);
void closeSingleInstancing(void);
#endif