ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/cvsroot/staticperl/include/staticperl.h
Revision: 1.1
Committed: Fri Jul 1 02:16:14 2005 UTC (21 years, 3 months ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: HEAD
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 root 1.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