diff options
author | jy910.yun <jy910.yun@samsung.com> | 2013-10-01 21:47:05 +0900 |
---|---|---|
committer | Lukasz Stelmach <l.stelmach@samsung.com> | 2013-10-01 06:06:22 -0700 |
commit | ffd0b1dbef3891962ae05f1500c62205a221f14c (patch) | |
tree | 81fa99f47dfe52e8827e8a014f0de754d90c248a /include | |
parent | 32a720aac8c094b4596e4bda7678d1ba42032ee2 (diff) | |
download | libsvi-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.h | 12 |
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 } |