[client] overlay: add record indicator

This commit is contained in:
Quantum
2022-03-19 01:02:04 -04:00
committed by Geoffrey McRae
parent 97cef000fd
commit 1685249f3a
6 changed files with 98 additions and 0 deletions

View File

@@ -39,6 +39,7 @@ extern struct LG_OverlayOps LGOverlayGraphs;
extern struct LG_OverlayOps LGOverlayHelp;
extern struct LG_OverlayOps LGOverlayConfig;
extern struct LG_OverlayOps LGOverlayMsg;
extern struct LG_OverlayOps LGOverlayRecord;
void overlayAlert_show(LG_MsgAlert type, const char * fmt, va_list args);
@@ -55,4 +56,6 @@ void overlayConfig_register(const char * title,
void overlayConfig_registerTab(const char * title,
void (*callback)(void * udata, int * id), void * udata);
void overlayRecord_show(bool show);
#endif