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