-rw-r--r-- | agg-plot/window_hooks.h | 18 |
diff --git a/agg-plot/window_hooks.h b/agg-plot/window_hooks.h index d91ddcd6..58c6ce33 100644 --- a/agg-plot/window_hooks.h +++ b/agg-plot/window_hooks.h @@ -8,15 +8,15 @@ __BEGIN_DECLS #include "lua.h" struct window_hooks { - int (*create)(lua_State* L); - int (*attach)(lua_State* L); - int (*update)(lua_State* L); - int (*refresh)(lua_State* L); - int (*close)(lua_State* L); - int (*save_image)(lua_State* L); - int (*restore_image)(lua_State* L); - - void (*register_module)(lua_State* L); + int (*create)(lua_State* L); + int (*attach)(lua_State* L); + int (*update)(lua_State* L); + int (*refresh)(lua_State* L); + int (*close)(lua_State* L); + int (*save_image)(lua_State* L); + int (*restore_image)(lua_State* L); + + void (*register_module)(lua_State* L); }; extern struct window_hooks app_window_hooks[1]; |