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
This commit is contained in:
Christopher Michael 2012-10-05 09:09:37 +00:00 committed by Christopher Michael
parent 6ce22db846
commit 08891484b5
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ struct _EVGL_Interface
// Returns the Window surface that evas uses for direct rendering opt.
void *(*evas_surface_get)(void *data);
void *(*native_window_create)(void *data);
int *(*native_window_destroy)(void *data, void *window);
int (*native_window_destroy)(void *data, void *window);
// Creates/Destroys the native surface from evas engine.
void *(*surface_create)(void *data, void *native_window);