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 <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2014-09-22 15:43:37 -04:00
parent 6e384f2a87
commit c60b348803
1 changed files with 3 additions and 3 deletions

View File

@ -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);