new function as3_parse_bytearray
[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(const char*filename);
7 void as3_parse_bytearray(const char*name, void*mem, int length);
8 void as3_warning(const char*format, ...);
9 char* as3_getglobalclass();
10 void* as3_getcode();
11 void as3_destroy();
12
13 #endif //__as3_compiler_h__