diff options
author | Christopher Michael <cp.michael@samsung.com> | 2012-10-05 09:09:37 +0000 |
---|---|---|
committer | Christopher Michael <cpmichael1@comcast.net> | 2012-10-05 09:09:37 +0000 |
commit | 08891484b55b6bbf424cc1366089e2bc71871f95 (patch) | |
tree | 2d2d8be933a02881ad408cd4c164770c82d5c73a /legacy | |
parent | 6ce22db8461d7c5eeafb28ad21603b40af05747f (diff) |
Fix function declaration for native_window_destroy in EVGL_Interface
structure (returns an int, not a pointer to int).
Signed-off-by: Christopher Michael <cp.michael@samsung.com>
SVN revision: 77518
Diffstat (limited to 'legacy')
-rwxr-xr-x | legacy/evas/src/modules/engines/gl_common/evas_gl_core_private.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/legacy/evas/src/modules/engines/gl_common/evas_gl_core_private.h b/legacy/evas/src/modules/engines/gl_common/evas_gl_core_private.h index 46c3f48..069495f 100755 --- a/legacy/evas/src/modules/engines/gl_common/evas_gl_core_private.h +++ b/legacy/evas/src/modules/engines/gl_common/evas_gl_core_private.h | |||
@@ -16,7 +16,7 @@ struct _EVGL_Interface | |||
16 | // Returns the Window surface that evas uses for direct rendering opt. | 16 | // Returns the Window surface that evas uses for direct rendering opt. |
17 | void *(*evas_surface_get)(void *data); | 17 | void *(*evas_surface_get)(void *data); |
18 | void *(*native_window_create)(void *data); | 18 | void *(*native_window_create)(void *data); |
19 | int *(*native_window_destroy)(void *data, void *window); | 19 | int (*native_window_destroy)(void *data, void *window); |
20 | 20 | ||
21 | // Creates/Destroys the native surface from evas engine. | 21 | // Creates/Destroys the native surface from evas engine. |
22 | void *(*surface_create)(void *data, void *native_window); | 22 | void *(*surface_create)(void *data, void *native_window); |