summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorSamuel Ortiz <sameo@linux.intel.com>2011-04-02 01:35:28 +0200
committerSamuel Ortiz <sameo@linux.intel.com>2011-04-02 01:35:28 +0200
commitd6a8190836330d68f64b78c95303133b36d8b26b (patch)
tree0bb6d146fe024dfb0b9f9327e06eba920289cd28 /include
parentfe11770a25d20713d0a7cedb2255d3fbf91f9922 (diff)
downloadconnman-d6a8190836330d68f64b78c95303133b36d8b26b.tar.gz
connman-d6a8190836330d68f64b78c95303133b36d8b26b.tar.bz2
connman-d6a8190836330d68f64b78c95303133b36d8b26b.zip
main: Initial configuration file support
Diffstat (limited to 'include')
-rw-r--r--include/configuration.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/include/configuration.h b/include/configuration.h
new file mode 100644
index 00000000..836fea92
--- /dev/null
+++ b/include/configuration.h
@@ -0,0 +1,35 @@
+/*
+ *
+ * Connection Manager
+ *
+ * Copyright (C) 2011 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
+ * published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ *
+ */
+
+#ifndef __CONNMAN_CONFIGURATION_H
+#define __CONNMAN_CONFIGURATION_H
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+connman_bool_t connman_configuration_get_bool(const char *key);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* __CONNMAN_CONFIGURATION_H */