summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorjy910.yun <jy910.yun@samsung.com>2013-10-01 21:47:05 +0900
committerLukasz Stelmach <l.stelmach@samsung.com>2013-10-01 06:06:22 -0700
commitffd0b1dbef3891962ae05f1500c62205a221f14c (patch)
tree81fa99f47dfe52e8827e8a014f0de754d90c248a /include
parent32a720aac8c094b4596e4bda7678d1ba42032ee2 (diff)
downloadlibsvi-ffd0b1dbef3891962ae05f1500c62205a221f14c.tar.gz
libsvi-ffd0b1dbef3891962ae05f1500c62205a221f14c.tar.bz2
libsvi-ffd0b1dbef3891962ae05f1500c62205a221f14c.zip
Clean up the code, limit logging and rename functions
Delete unnecessary logging calls and underscore characters on function name. Change-Id: Ie18a77b2b3765bb564b340dc8ad94ed3eb52fab5 Signed-off-by: jy910.yun <jy910.yun@samsung.com>
Diffstat (limited to 'include')
-rw-r--r--include/feedback-internal.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/feedback-internal.h b/include/feedback-internal.h
index 4d8f519..a6d0160 100644
--- a/include/feedback-internal.h
+++ b/include/feedback-internal.h
@@ -32,12 +32,12 @@ extern "C" {
typedef void* feedback_h;
-int _feedback_init(feedback_h *handle);
-int _feedback_fini(feedback_h handle);
-int _feedback_play_sound(feedback_h handle, feedback_pattern_e key);
-int _feedback_play_vibration(feedback_h handle, feedback_pattern_e key);
-int _feedback_set_path(feedback_type_e type, feedback_pattern_e key, char* path);
-int _feedback_get_path(feedback_type_e type, feedback_pattern_e key, char* buf, unsigned int buflen);
+int feedback_init(feedback_h *handle);
+int feedback_fini(feedback_h handle);
+int feedback_play_sound(feedback_h handle, feedback_pattern_e key);
+int feedback_play_vibration(feedback_h handle, feedback_pattern_e key);
+int feedback_set_path(feedback_type_e type, feedback_pattern_e key, char* path);
+int feedback_get_path(feedback_type_e type, feedback_pattern_e key, char* buf, unsigned int buflen);
#ifdef __cplusplus
}