DA: Add exception check for time logic
[platform/upstream/connman.git] / include / setting.h
old mode 100644 (file)
new mode 100755 (executable)
index 6503388..f141bf6
 #ifndef __CONNMAN_SETTING_H
 #define __CONNMAN_SETTING_H
 
-#include <connman/types.h>
+#include <stdbool.h>
 
 #ifdef __cplusplus
 extern "C" {
 #endif
 
-connman_bool_t connman_setting_get_bool(const char *key);
+bool connman_setting_get_bool(const char *key);
+#if defined TIZEN_EXT
+int connman_setting_get_int(const char *key);
+#endif
+unsigned int connman_setting_get_uint(const char *key);
+char *connman_setting_get_string(const char *key);
 char **connman_setting_get_string_list(const char *key);
 unsigned int *connman_setting_get_uint_list(const char *key);
 
+unsigned int connman_timeout_input_request(void);
+unsigned int connman_timeout_browser_launch(void);
+
 #ifdef __cplusplus
 }
 #endif