emotion: fix Windows compilation.

This commit is contained in:
Cedric BAIL 2013-12-16 17:03:10 +09:00
parent fce52b1031
commit e131580aba
1 changed files with 16 additions and 13 deletions

View File

@ -219,19 +219,6 @@ _emotion_process_webcam(void *data)
return EINA_TRUE;
}
static void
_emotion_enumerate_all_webcams(void)
{
Eina_List *devices;
if (_emotion_webcams->init) return ;
devices = eeze_udev_find_by_type(EEZE_UDEV_TYPE_V4L, NULL);
_emotion_webcams->check_list = devices;
_emotion_webcams->idler = ecore_idler_add(_emotion_process_webcam,
_emotion_webcams);
}
static void
_emotion_eeze_events(const char *syspath,
Eeze_Udev_Event ev,
@ -269,6 +256,22 @@ _emotion_eeze_events(const char *syspath,
#endif
static void
_emotion_enumerate_all_webcams(void)
{
Eina_List *devices;
#ifdef HAVE_EEZE
if (_emotion_webcams->init) return ;
devices = eeze_udev_find_by_type(EEZE_UDEV_TYPE_V4L, NULL);
_emotion_webcams->check_list = devices;
_emotion_webcams->idler = ecore_idler_add(_emotion_process_webcam,
_emotion_webcams);
#endif
}
Eina_Bool emotion_webcam_init(void)
{
EMOTION_WEBCAM_UPDATE = ecore_event_type_new();