#ifndef UI_DATA_H #define UI_DATA_H #include #include #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_