summaryrefslogtreecommitdiff
path: root/inc
diff options
context:
space:
mode:
authorJin Yoon <jinny.yoon@samsung.com>2017-08-01 05:11:34 +0000
committerGerrit Code Review <gerrit@review.ap-northeast-2.compute.internal>2017-08-01 05:11:34 +0000
commit4709d4e72c37622918bf09708c142375aeb198d5 (patch)
tree21d6fbb402e9f799b1fafbef3695443746d2f6db /inc
parentf71834f94aac05a54b64a983e6c6bc7789054843 (diff)
parent7f33b3e9f1d4a4cb2fede2b4e4d72f6c90d9e4a1 (diff)
downloadrcc-4709d4e72c37622918bf09708c142375aeb198d5.tar.gz
rcc-4709d4e72c37622918bf09708c142375aeb198d5.tar.bz2
rcc-4709d4e72c37622918bf09708c142375aeb198d5.zip
Merge "Add connectivity APIs for various data types"
Diffstat (limited to 'inc')
-rw-r--r--inc/connectivity.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/inc/connectivity.h b/inc/connectivity.h
index 001bdf5..7b21043 100644
--- a/inc/connectivity.h
+++ b/inc/connectivity.h
@@ -34,6 +34,8 @@ typedef struct connectivity_resource connectivity_resource_s;
extern int connectivity_set_resource(const char *uri_path, const char *type, connectivity_resource_s **out_resource_info);
extern void connectivity_unset_resource(connectivity_resource_s *resource);
-extern int connectivity_notify(connectivity_resource_s *resource_info, int value);
+extern int connectivity_notify_bool(connectivity_resource_s *resource_info, const char *key, bool value);
+extern int connectivity_notify_int(connectivity_resource_s *resource_info, const char *key, int value);
+extern int connectivity_notify_double(connectivity_resource_s *resource_info, const char *key, double value);
#endif /* __POSITION_FINDER_CONNECTIVITY_H__ */