diff options
author | Daniel Zaoui <daniel.zaoui@samsung.com> | 2014-02-19 14:51:40 +0200 |
---|---|---|
committer | Daniel Zaoui <daniel.zaoui@samsung.com> | 2014-03-03 14:09:56 +0200 |
commit | 02f4c112ca73472dec65eb483304c836a59b2c25 (patch) | |
tree | aa7f1199fc8ae0f4700c02ad5a8ad7776582bbe5 /src/bin/eolian/eo1_generator.c | |
parent | 7b42be92d5efafd552662f9e50514006405ae77e (diff) |
Eolian/Generator: add private data to the prototypes of implementations
Diffstat (limited to 'src/bin/eolian/eo1_generator.c')
-rw-r--r-- | src/bin/eolian/eo1_generator.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bin/eolian/eo1_generator.c b/src/bin/eolian/eo1_generator.c index 5340ef5ead..6edb0e0d87 100644 --- a/src/bin/eolian/eo1_generator.c +++ b/src/bin/eolian/eo1_generator.c | |||
@@ -109,12 +109,12 @@ tmpl_eo_pardesc[] =" * @param[%s] %s\n"; | |||
109 | static const char | 109 | static const char |
110 | tmpl_eobind_body[] ="\ | 110 | tmpl_eobind_body[] ="\ |
111 | \n\ | 111 | \n\ |
112 | @#ret_type _@#class_@#func(Eo *obj@#full_params);\n\n\ | 112 | @#ret_type _@#class_@#func(Eo *obj, void *_pd@#full_params);\n\n\ |
113 | static void\n\ | 113 | static void\n\ |
114 | _eo_obj_@#class_@#func(Eo *obj, void *_pd EINA_UNUSED, va_list *list@#list_unused)\n\ | 114 | _eo_obj_@#class_@#func(Eo *obj, void *_pd, va_list *list@#list_unused)\n\ |
115 | {\n\ | 115 | {\n\ |
116 | @#list_vars\ | 116 | @#list_vars\ |
117 | @#ret_param_@#class_@#func(obj@#list_params);\n\ | 117 | @#ret_param_@#class_@#func(obj, _pd@#list_params);\n\ |
118 | }\n\ | 118 | }\n\ |
119 | "; | 119 | "; |
120 | 120 | ||