added simple interface to the parser
[swftools.git] / lib / as3 / compiler.h
1 #ifndef __as3_compiler_h__
2 #define __as3_compiler_h__
3
4 void as3_setverbosity(int level);
5 void as3_add_include_dir(char*dir);
6 void as3_parse_file(char*filename);
7 void as3_warning(const char*format, ...);
8 char* as3_getglobalclass();
9 void* as3_getcode();
10 void as3_destroy();
11
12 #endif //__as3_compiler_h__