summaryrefslogtreecommitdiff
path: root/src/lib/ecore_audio/ecore_audio_obj_in_sndfile.c
diff options
context:
space:
mode:
authorCedric Bail <cedric.bail@free.fr>2013-05-05 14:08:57 +0900
committerCedric Bail <cedric.bail@free.fr>2013-05-05 14:08:57 +0900
commitc232458de50716811d810725c82b9083859fae00 (patch)
treee3dfdd73fd2bf26fe21a884ddf858f8c35e407cd /src/lib/ecore_audio/ecore_audio_obj_in_sndfile.c
parent4e6fe47ea04ddd50cbeb757ecb9b1d01d744f40d (diff)
downloadefl-c232458de50716811d810725c82b9083859fae00.tar.gz
ecore_audio: _read is a system defined symbol on Windows.
Diffstat (limited to 'src/lib/ecore_audio/ecore_audio_obj_in_sndfile.c')
-rw-r--r--src/lib/ecore_audio/ecore_audio_obj_in_sndfile.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/ecore_audio/ecore_audio_obj_in_sndfile.c b/src/lib/ecore_audio/ecore_audio_obj_in_sndfile.c
index ae921eaabf..82646eeb81 100644
--- a/src/lib/ecore_audio/ecore_audio_obj_in_sndfile.c
+++ b/src/lib/ecore_audio/ecore_audio_obj_in_sndfile.c
@@ -29,7 +29,7 @@ struct _Ecore_Audio_Sndfile
typedef struct _Ecore_Audio_Sndfile Ecore_Audio_Sndfile;
-static void _read(Eo *eo_obj EINA_UNUSED, void *_pd, va_list *list)
+static void _sndfile_read(Eo *eo_obj EINA_UNUSED, void *_pd, va_list *list)
{
Ecore_Audio_Sndfile *obj = _pd;
int read;
@@ -251,7 +251,7 @@ static void _class_constructor(Eo_Class *klass)
EO_OP_FUNC(ECORE_AUDIO_OBJ_ID(ECORE_AUDIO_OBJ_SUB_ID_FORMAT_GET), _format_get),
EO_OP_FUNC(ECORE_AUDIO_OBJ_IN_ID(ECORE_AUDIO_OBJ_IN_SUB_ID_SEEK), _seek),
- EO_OP_FUNC(ECORE_AUDIO_OBJ_IN_ID(ECORE_AUDIO_OBJ_IN_SUB_ID_READ_INTERNAL), _read),
+ EO_OP_FUNC(ECORE_AUDIO_OBJ_IN_ID(ECORE_AUDIO_OBJ_IN_SUB_ID_READ_INTERNAL), _sndfile_read),
EO_OP_FUNC(ECORE_AUDIO_OBJ_ID(ECORE_AUDIO_OBJ_SUB_ID_VIO_SET), _vio_set),
EO_OP_FUNC_SENTINEL