-rw-r--r-- | agg-plot/lua-cplot-priv.h | 19 |
diff --git a/agg-plot/lua-cplot-priv.h b/agg-plot/lua-cplot-priv.h new file mode 100644 index 00000000..c55b970a --- /dev/null +++ b/agg-plot/lua-cplot-priv.h @@ -0,0 +1,19 @@ + +#include <pthread.h> + +extern "C" { + + struct lcplot { + cplot *plot; + int lua_is_owner; + int is_shown; + pthread_mutex_t *mutex; + + void *x_app; + }; + + extern void lcplot_destroy (struct lcplot *cp); + + extern void update_callback (void *_app); + +} |