author | Francesco Abbate <francesco.bbt@gmail.com> | 2012年10月15日 13:11:54 +0200 |
---|---|---|
committer | Francesco Abbate <francesco.bbt@gmail.com> | 2012年10月15日 13:11:54 +0200 |
commit | 137e4d264c73b3087a5d0968362c5b9ca3108f2d (patch) | |
tree | a80691d187615ec2e63f25182be7895b9a8a313f /agg-plot/window_hooks.h | |
parent | 7d157c5bd8ddf920094907a35c9329ce0688e3d4 (diff) | |
download | gsl-shell-137e4d264c73b3087a5d0968362c5b9ca3108f2d.tar.gz |
-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]; |