| Revision: | 1.1 |
| Committed: | Fri Jul 1 02:16:14 2005 UTC (21 years, 2 months ago) by root |
| Content type: | text/plain |
| Branch: | MAIN |
| CVS Tags: | HEAD |
| Log Message: | *** empty log message *** |
| # | Content |
|---|---|
| 1 | #ifndef STATICPERL_H |
| 2 | #define STATICPERL_H |
| 3 | |
| 4 | typedef struct { |
| 5 | int count; |
| 6 | unsigned char *idx; |
| 7 | unsigned char *data; |
| 8 | void *next; |
| 9 | } staticperl_bundle; |
| 10 | |
| 11 | void staticperl_init (); |
| 12 | void staticperl_cleanup (); |
| 13 | void staticperl_register_bundle (staticperl_bundle *bundle); |
| 14 | |
| 15 | #endif |
| 16 |