summaryrefslogtreecommitdiff
path: root/include/appcore-common.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/appcore-common.h')
-rwxr-xr-xinclude/appcore-common.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/appcore-common.h b/include/appcore-common.h
index cd61e01..1201b6d 100755
--- a/include/appcore-common.h
+++ b/include/appcore-common.h
@@ -201,7 +201,7 @@ int add_callbacks(struct appdata *data)
*
*/
int appcore_set_event_callback(enum appcore_event event,
- int (*cb)(void *), void *data);
+ int (*cb)(void *, void *), void *data);
/**
* @par Description:
@@ -255,7 +255,7 @@ static int _rot_cb(enum appcore_rm, void *);
* @endcode
*
*/
-int appcore_set_rotation_cb(int (*cb) (enum appcore_rm, void *),
+int appcore_set_rotation_cb(int (*cb) (void *event_info, enum appcore_rm, void *),
void *data);
/**