lib/hal/e_hal_util.h
Go to the documentation of this file.
00001 #ifndef E_HAL_UTIL_H 00002 #define E_HAL_UTIL_H 00003 00004 #include "E_Hal.h" 00005 00006 void e_hal_property_free(E_Hal_Property *prop); 00007 const char *e_hal_property_string_get(E_Hal_Properties *properties, const char *key, int *err); 00008 char e_hal_property_bool_get(E_Hal_Properties *properties, const char *key, int *err); 00009 int e_hal_property_int_get(E_Hal_Properties *properties, const char *key, int *err); 00010 uint64_t e_hal_property_uint64_get(E_Hal_Properties *properties, const char *key, int *err); 00011 double e_hal_property_double_get(E_Hal_Properties *properties, const char *key, int *err); 00012 const Eina_List *e_hal_property_strlist_get(E_Hal_Properties *properties, const char *key, int *err); 00013 00014 #endif