#ifndef UIC_PROPERTIES_H
#define UIC_PROPERTIES_H
#include "../ui/properties.h"
#include <ucx/map.h>
#include <ucx/list.h>
#ifdef __cplusplus
extern "C" {
#endif
#ifdef _WIN32
#define UI_HOME "USERPROFILE"
#else
#define UI_HOME "HOME"
#endif
void uic_load_app_properties();
void uic_store_app_properties();
int uic_load_language_file(
const char *path);
char* uic_get_image_path(
const char *imgfilename);
#ifdef __cplusplus
}
#endif
#endif