24 lines
388 B
C
24 lines
388 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_SIZE
|
|
#define UI_DATA_SIZE 1024*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_
|