[client] overlay: allow registration of runtime configuration options

This commit is contained in:
Geoffrey McRae
2021-08-05 00:47:00 +10:00
parent 4e81c7f724
commit f3f0157d3c
4 changed files with 75 additions and 15 deletions

View File

@@ -33,6 +33,9 @@ GraphHandle overlayGraph_register(const char * name, RingBuffer buffer,
float min, float max);
void overlayGraph_unregister();
void overlayGraph_iterate(void (*callback)(GraphHandle handle, const char * name,
bool * enabled, void * udata), void * udata);
bool * enabled, void * udata), void * udata);
void overlayConfig_register(const char * title, void (*callback)(void * udata),
void * udata);
#endif