From c60b348803c40b5b930a67d63796c464b111b684 Mon Sep 17 00:00:00 2001 From: Chris Michael Date: Mon, 22 Sep 2014 15:43:37 -0400 Subject: [PATCH] ecore-drm: Fix private function prototypes for new dbus functions Summary: In porting Ecore_Drm to use Eldbus, I had to change some internal functions to work with the async nature of Eldbus. As a result, I had to modify some private local functions. @fix Signed-off-by: Chris Michael --- src/lib/ecore_drm/ecore_drm_private.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/lib/ecore_drm/ecore_drm_private.h b/src/lib/ecore_drm/ecore_drm_private.h index 194a1ecef5..68f3afabf2 100644 --- a/src/lib/ecore_drm/ecore_drm_private.h +++ b/src/lib/ecore_drm/ecore_drm_private.h @@ -231,9 +231,9 @@ struct _Ecore_Drm_Sprite unsigned int formats[]; }; -Eina_Bool _ecore_drm_dbus_init(const char *session); -void _ecore_drm_dbus_shutdown(void); -int _ecore_drm_dbus_device_open(const char *device); +int _ecore_drm_dbus_init(const char *session); +int _ecore_drm_dbus_shutdown(void); +void _ecore_drm_dbus_device_open(const char *device, Eldbus_Message_Cb callback, const void *data); void _ecore_drm_dbus_device_close(const char *device); Ecore_Drm_Evdev *_ecore_drm_evdev_device_create(Ecore_Drm_Seat *seat, const char *path, int fd);