ref: f58f8d3d980f2a97a573aab698e8729f7fc631d3
dir: /src/ft2_sysreqs.h/
#pragma once #include <stdint.h> #include <stdbool.h> int16_t okBoxThreadSafe(int16_t typ, const char *headline, const char *text); int16_t okBox(int16_t typ, const char *headline, const char *text); int16_t quitBox(bool skipQuitMsg); int16_t inputBox(int16_t typ, const char *headline, char *edText, uint16_t maxStrLen); bool askUnsavedChanges(uint8_t type); // for thread-safe version of okBox() typedef struct okBoxData_t { volatile bool active; int16_t typ, returnData; const char *headline, *text; } okBoxData_t; extern okBoxData_t okBoxData; // ft2_sysreqs.c enum { ASK_TYPE_QUIT = 0, ASK_TYPE_LOAD_SONG = 1, };