DA: Skip initializing failed_bssids list when eapol failure case
[platform/upstream/connman.git] / include / setting.h
old mode 100644 (file)
new mode 100755 (executable)
index 3ea631a..f141bf6
@@ -2,7 +2,7 @@
  *
  *  Connection Manager
  *
- *  Copyright (C) 2011  Intel Corporation. All rights reserved.
+ *  Copyright (C) 2012  Intel Corporation. All rights reserved.
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License version 2 as
 #ifndef __CONNMAN_SETTING_H
 #define __CONNMAN_SETTING_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
 }