new functions schedule_class, schedule_package
[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
7 void as3_parse_file(const char*filename);
8 void as3_parse_bytearray(const char*name, void*mem, int length);
9 void as3_schedule_package(const char*package);
10 void as3_schedule_class(const char*package, const char*cls);
11
12 void as3_warning(const char*format, ...);
13 char* as3_getglobalclass();
14 void* as3_getcode();
15 void as3_destroy();
16
17 #endif //__as3_compiler_h__