dice-gui/src/ui_data.h

24 lines
387 B
C

#ifndef UI_DATA_H
#define UI_DATA_H
#include <clay/clay.h>
#include <stddef.h>
#ifdef __cplusplus
extern "C" {
#endif
#ifndef UI_DATA_LENGTH
#define UI_DATA_LENGTH 1024
#endif
extern Clay_String UiData_StoreString(char const *data, size_t amount);
extern Clay_String UiData_StoreClayStr(Clay_String str);
extern void UiData_Clear();
#ifdef __cplusplus
}
#endif
#endif // !UI_DATA_