#ifndef STATICPERL_H #define STATICPERL_H typedef struct { int count; unsigned char *idx; unsigned char *data; void *next; } staticperl_bundle; void staticperl_init (); void staticperl_cleanup (); void staticperl_register_bundle (staticperl_bundle *bundle); #endif