diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2013-09-26 23:14:39 +0200 |
---|---|---|
committer | Tom Hacohen <tom@stosb.com> | 2013-09-27 14:01:46 +0100 |
commit | 1714fe93f42d6950171d0ab9069bfb808a62fd31 (patch) | |
tree | 0f448abb3d8035af1c448e0c0c44186a5024c942 /src/lib/ecore_audio | |
parent | ee1b0833ed28b47812407a8a6f019a80f9868bfa (diff) |
eo: libs,test,benchmarks Eo_Class -> Eo
Conflicts:
src/tests/eo/suite/eo_test_general.c
Diffstat (limited to 'src/lib/ecore_audio')
-rw-r--r-- | src/lib/ecore_audio/ecore_audio_obj.c | 2 | ||||
-rw-r--r-- | src/lib/ecore_audio/ecore_audio_obj.h | 2 | ||||
-rw-r--r-- | src/lib/ecore_audio/ecore_audio_obj_in.c | 2 | ||||
-rw-r--r-- | src/lib/ecore_audio/ecore_audio_obj_in.h | 2 | ||||
-rw-r--r-- | src/lib/ecore_audio/ecore_audio_obj_in_sndfile.c | 2 | ||||
-rw-r--r-- | src/lib/ecore_audio/ecore_audio_obj_in_sndfile.h | 2 | ||||
-rw-r--r-- | src/lib/ecore_audio/ecore_audio_obj_in_tone.c | 2 | ||||
-rw-r--r-- | src/lib/ecore_audio/ecore_audio_obj_in_tone.h | 2 | ||||
-rw-r--r-- | src/lib/ecore_audio/ecore_audio_obj_out.c | 2 | ||||
-rw-r--r-- | src/lib/ecore_audio/ecore_audio_obj_out.h | 2 | ||||
-rw-r--r-- | src/lib/ecore_audio/ecore_audio_obj_out_pulse.c | 2 | ||||
-rw-r--r-- | src/lib/ecore_audio/ecore_audio_obj_out_pulse.h | 2 | ||||
-rw-r--r-- | src/lib/ecore_audio/ecore_audio_obj_out_sndfile.c | 2 | ||||
-rw-r--r-- | src/lib/ecore_audio/ecore_audio_obj_out_sndfile.h | 2 |
14 files changed, 14 insertions, 14 deletions
diff --git a/src/lib/ecore_audio/ecore_audio_obj.c b/src/lib/ecore_audio/ecore_audio_obj.c index 83ddbe95e1..9bbc1d4ce2 100644 --- a/src/lib/ecore_audio/ecore_audio_obj.c +++ b/src/lib/ecore_audio/ecore_audio_obj.c | |||
@@ -87,7 +87,7 @@ static void _constructor(Eo *eo_obj, void *_pd, va_list *list EINA_UNUSED) | |||
87 | 87 | ||
88 | } | 88 | } |
89 | 89 | ||
90 | static void _class_constructor(Eo_Class *klass) | 90 | static void _class_constructor(Eo *klass) |
91 | { | 91 | { |
92 | const Eo_Op_Func_Description func_desc[] = { | 92 | const Eo_Op_Func_Description func_desc[] = { |
93 | /* Virtual functions of parent class implemented in this class */ | 93 | /* Virtual functions of parent class implemented in this class */ |
diff --git a/src/lib/ecore_audio/ecore_audio_obj.h b/src/lib/ecore_audio/ecore_audio_obj.h index fc8d8ebb2f..603aa96182 100644 --- a/src/lib/ecore_audio/ecore_audio_obj.h +++ b/src/lib/ecore_audio/ecore_audio_obj.h | |||
@@ -41,7 +41,7 @@ extern "C" | |||
41 | * | 41 | * |
42 | * @return The Eo class ID | 42 | * @return The Eo class ID |
43 | */ | 43 | */ |
44 | const Eo_Class *ecore_audio_obj_class_get() EINA_CONST; | 44 | const Eo *ecore_audio_obj_class_get() EINA_CONST; |
45 | 45 | ||
46 | extern EAPI Eo_Op ECORE_AUDIO_OBJ_BASE_ID; | 46 | extern EAPI Eo_Op ECORE_AUDIO_OBJ_BASE_ID; |
47 | 47 | ||
diff --git a/src/lib/ecore_audio/ecore_audio_obj_in.c b/src/lib/ecore_audio/ecore_audio_obj_in.c index 1abaae4d09..9574cf17ef 100644 --- a/src/lib/ecore_audio/ecore_audio_obj_in.c +++ b/src/lib/ecore_audio/ecore_audio_obj_in.c | |||
@@ -251,7 +251,7 @@ static void _destructor(Eo *eo_obj, void *_pd, va_list *list EINA_UNUSED) | |||
251 | eo_do_super(eo_obj, MY_CLASS, eo_destructor()); | 251 | eo_do_super(eo_obj, MY_CLASS, eo_destructor()); |
252 | } | 252 | } |
253 | 253 | ||
254 | static void _class_constructor(Eo_Class *klass) | 254 | static void _class_constructor(Eo *klass) |
255 | { | 255 | { |
256 | const Eo_Op_Func_Description func_desc[] = { | 256 | const Eo_Op_Func_Description func_desc[] = { |
257 | /* Virtual functions of parent class implemented in this class */ | 257 | /* Virtual functions of parent class implemented in this class */ |
diff --git a/src/lib/ecore_audio/ecore_audio_obj_in.h b/src/lib/ecore_audio/ecore_audio_obj_in.h index b0b26eaafb..080dac7b0f 100644 --- a/src/lib/ecore_audio/ecore_audio_obj_in.h +++ b/src/lib/ecore_audio/ecore_audio_obj_in.h | |||
@@ -41,7 +41,7 @@ extern "C" | |||
41 | * | 41 | * |
42 | * @return The Eo class ID | 42 | * @return The Eo class ID |
43 | */ | 43 | */ |
44 | const Eo_Class *ecore_audio_obj_in_class_get() EINA_CONST; | 44 | const Eo *ecore_audio_obj_in_class_get() EINA_CONST; |
45 | 45 | ||
46 | extern EAPI Eo_Op ECORE_AUDIO_OBJ_IN_BASE_ID; | 46 | extern EAPI Eo_Op ECORE_AUDIO_OBJ_IN_BASE_ID; |
47 | 47 | ||
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 4799f6d676..a8abbb1217 100644 --- a/src/lib/ecore_audio/ecore_audio_obj_in_sndfile.c +++ b/src/lib/ecore_audio/ecore_audio_obj_in_sndfile.c | |||
@@ -253,7 +253,7 @@ static void _destructor(Eo *eo_obj, void *_pd, va_list *list EINA_UNUSED) | |||
253 | eo_do_super(eo_obj, MY_CLASS, eo_destructor()); | 253 | eo_do_super(eo_obj, MY_CLASS, eo_destructor()); |
254 | } | 254 | } |
255 | 255 | ||
256 | static void _class_constructor(Eo_Class *klass) | 256 | static void _class_constructor(Eo *klass) |
257 | { | 257 | { |
258 | const Eo_Op_Func_Description func_desc[] = { | 258 | const Eo_Op_Func_Description func_desc[] = { |
259 | /* Virtual functions of parent class implemented in this class */ | 259 | /* Virtual functions of parent class implemented in this class */ |
diff --git a/src/lib/ecore_audio/ecore_audio_obj_in_sndfile.h b/src/lib/ecore_audio/ecore_audio_obj_in_sndfile.h index 9ed5e7d209..2ac034437a 100644 --- a/src/lib/ecore_audio/ecore_audio_obj_in_sndfile.h +++ b/src/lib/ecore_audio/ecore_audio_obj_in_sndfile.h | |||
@@ -41,7 +41,7 @@ extern "C" | |||
41 | * | 41 | * |
42 | * @return The Eo class ID | 42 | * @return The Eo class ID |
43 | */ | 43 | */ |
44 | const Eo_Class *ecore_audio_obj_in_sndfile_class_get() EINA_CONST; | 44 | const Eo *ecore_audio_obj_in_sndfile_class_get() EINA_CONST; |
45 | 45 | ||
46 | extern EAPI Eo_Op ECORE_AUDIO_OBJ_IN_SNDFILE_BASE_ID; | 46 | extern EAPI Eo_Op ECORE_AUDIO_OBJ_IN_SNDFILE_BASE_ID; |
47 | 47 | ||
diff --git a/src/lib/ecore_audio/ecore_audio_obj_in_tone.c b/src/lib/ecore_audio/ecore_audio_obj_in_tone.c index f0fec98dcb..34a3f03992 100644 --- a/src/lib/ecore_audio/ecore_audio_obj_in_tone.c +++ b/src/lib/ecore_audio/ecore_audio_obj_in_tone.c | |||
@@ -149,7 +149,7 @@ static void _constructor(Eo *eo_obj, void *_pd, va_list *list EINA_UNUSED) | |||
149 | obj->freq = 1000; | 149 | obj->freq = 1000; |
150 | } | 150 | } |
151 | 151 | ||
152 | static void _class_constructor(Eo_Class *klass) | 152 | static void _class_constructor(Eo *klass) |
153 | { | 153 | { |
154 | const Eo_Op_Func_Description func_desc[] = { | 154 | const Eo_Op_Func_Description func_desc[] = { |
155 | /* Virtual functions of parent class implemented in this class */ | 155 | /* Virtual functions of parent class implemented in this class */ |
diff --git a/src/lib/ecore_audio/ecore_audio_obj_in_tone.h b/src/lib/ecore_audio/ecore_audio_obj_in_tone.h index 13bd01645c..059142209c 100644 --- a/src/lib/ecore_audio/ecore_audio_obj_in_tone.h +++ b/src/lib/ecore_audio/ecore_audio_obj_in_tone.h | |||
@@ -48,7 +48,7 @@ extern "C" | |||
48 | * | 48 | * |
49 | * @return The Eo class ID | 49 | * @return The Eo class ID |
50 | */ | 50 | */ |
51 | const Eo_Class *ecore_audio_obj_in_tone_class_get() EINA_CONST; | 51 | const Eo *ecore_audio_obj_in_tone_class_get() EINA_CONST; |
52 | 52 | ||
53 | extern EAPI Eo_Op ECORE_AUDIO_OBJ_IN_TONE_BASE_ID; | 53 | extern EAPI Eo_Op ECORE_AUDIO_OBJ_IN_TONE_BASE_ID; |
54 | 54 | ||
diff --git a/src/lib/ecore_audio/ecore_audio_obj_out.c b/src/lib/ecore_audio/ecore_audio_obj_out.c index e3822efca3..4834cce0cd 100644 --- a/src/lib/ecore_audio/ecore_audio_obj_out.c +++ b/src/lib/ecore_audio/ecore_audio_obj_out.c | |||
@@ -174,7 +174,7 @@ static void _destructor(Eo *eo_obj, void *_pd, va_list *list EINA_UNUSED) | |||
174 | eo_do_super(eo_obj, MY_CLASS, eo_destructor()); | 174 | eo_do_super(eo_obj, MY_CLASS, eo_destructor()); |
175 | } | 175 | } |
176 | 176 | ||
177 | static void _class_constructor(Eo_Class *klass) | 177 | static void _class_constructor(Eo *klass) |
178 | { | 178 | { |
179 | const Eo_Op_Func_Description func_desc[] = { | 179 | const Eo_Op_Func_Description func_desc[] = { |
180 | /* Virtual functions of parent class implemented in this class */ | 180 | /* Virtual functions of parent class implemented in this class */ |
diff --git a/src/lib/ecore_audio/ecore_audio_obj_out.h b/src/lib/ecore_audio/ecore_audio_obj_out.h index 0052545306..68fa451389 100644 --- a/src/lib/ecore_audio/ecore_audio_obj_out.h +++ b/src/lib/ecore_audio/ecore_audio_obj_out.h | |||
@@ -41,7 +41,7 @@ extern "C" | |||
41 | * | 41 | * |
42 | * @return The Eo class ID | 42 | * @return The Eo class ID |
43 | */ | 43 | */ |
44 | const Eo_Class *ecore_audio_obj_out_class_get() EINA_CONST; | 44 | const Eo *ecore_audio_obj_out_class_get() EINA_CONST; |
45 | 45 | ||
46 | extern EAPI Eo_Op ECORE_AUDIO_OBJ_OUT_BASE_ID; | 46 | extern EAPI Eo_Op ECORE_AUDIO_OBJ_OUT_BASE_ID; |
47 | 47 | ||
diff --git a/src/lib/ecore_audio/ecore_audio_obj_out_pulse.c b/src/lib/ecore_audio/ecore_audio_obj_out_pulse.c index 80f7fb0227..0a504fa442 100644 --- a/src/lib/ecore_audio/ecore_audio_obj_out_pulse.c +++ b/src/lib/ecore_audio/ecore_audio_obj_out_pulse.c | |||
@@ -287,7 +287,7 @@ static void _destructor(Eo *eo_obj, void *_pd EINA_UNUSED, va_list *list EINA_UN | |||
287 | class_vars.outputs = eina_list_remove(class_vars.outputs, eo_obj); | 287 | class_vars.outputs = eina_list_remove(class_vars.outputs, eo_obj); |
288 | } | 288 | } |
289 | 289 | ||
290 | static void _class_constructor(Eo_Class *klass) | 290 | static void _class_constructor(Eo *klass) |
291 | { | 291 | { |
292 | const Eo_Op_Func_Description func_desc[] = { | 292 | const Eo_Op_Func_Description func_desc[] = { |
293 | /* Virtual functions of parent class implemented in this class */ | 293 | /* Virtual functions of parent class implemented in this class */ |
diff --git a/src/lib/ecore_audio/ecore_audio_obj_out_pulse.h b/src/lib/ecore_audio/ecore_audio_obj_out_pulse.h index a0318316d1..a1bc110201 100644 --- a/src/lib/ecore_audio/ecore_audio_obj_out_pulse.h +++ b/src/lib/ecore_audio/ecore_audio_obj_out_pulse.h | |||
@@ -41,7 +41,7 @@ extern "C" | |||
41 | * | 41 | * |
42 | * @return The Eo class ID | 42 | * @return The Eo class ID |
43 | */ | 43 | */ |
44 | const Eo_Class *ecore_audio_obj_out_pulse_class_get() EINA_CONST; | 44 | const Eo *ecore_audio_obj_out_pulse_class_get() EINA_CONST; |
45 | 45 | ||
46 | extern EAPI Eo_Op ECORE_AUDIO_OBJ_OUT_PULSE_BASE_ID; | 46 | extern EAPI Eo_Op ECORE_AUDIO_OBJ_OUT_PULSE_BASE_ID; |
47 | 47 | ||
diff --git a/src/lib/ecore_audio/ecore_audio_obj_out_sndfile.c b/src/lib/ecore_audio/ecore_audio_obj_out_sndfile.c index 445a63e484..5e9664c817 100644 --- a/src/lib/ecore_audio/ecore_audio_obj_out_sndfile.c +++ b/src/lib/ecore_audio/ecore_audio_obj_out_sndfile.c | |||
@@ -214,7 +214,7 @@ static void _destructor(Eo *eo_obj, void *_pd, va_list *list EINA_UNUSED) | |||
214 | eo_do_super(eo_obj, MY_CLASS, eo_destructor()); | 214 | eo_do_super(eo_obj, MY_CLASS, eo_destructor()); |
215 | } | 215 | } |
216 | 216 | ||
217 | static void _class_constructor(Eo_Class *klass) | 217 | static void _class_constructor(Eo *klass) |
218 | { | 218 | { |
219 | const Eo_Op_Func_Description func_desc[] = { | 219 | const Eo_Op_Func_Description func_desc[] = { |
220 | /* Virtual functions of parent class implemented in this class */ | 220 | /* Virtual functions of parent class implemented in this class */ |
diff --git a/src/lib/ecore_audio/ecore_audio_obj_out_sndfile.h b/src/lib/ecore_audio/ecore_audio_obj_out_sndfile.h index 818abbe646..d301bb45f8 100644 --- a/src/lib/ecore_audio/ecore_audio_obj_out_sndfile.h +++ b/src/lib/ecore_audio/ecore_audio_obj_out_sndfile.h | |||
@@ -41,7 +41,7 @@ extern "C" | |||
41 | * | 41 | * |
42 | * @return The Eo class ID | 42 | * @return The Eo class ID |
43 | */ | 43 | */ |
44 | const Eo_Class *ecore_audio_obj_out_sndfile_class_get() EINA_CONST; | 44 | const Eo *ecore_audio_obj_out_sndfile_class_get() EINA_CONST; |
45 | 45 | ||
46 | extern EAPI Eo_Op ECORE_AUDIO_OBJ_OUT_SNDFILE_BASE_ID; | 46 | extern EAPI Eo_Op ECORE_AUDIO_OBJ_OUT_SNDFILE_BASE_ID; |
47 | 47 | ||