7786e7ad508ac017e1d4d88468d997156d88f4be
[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_parse_directory(const char*dir);
10
11 char as3_schedule_directory(const char*dir);
12 void as3_schedule_package(const char*package);
13 void as3_schedule_class(const char*package, const char*cls);
14
15 void as3_warning(const char*format, ...);
16 char* as3_getglobalclass();
17 void* as3_getcode();
18 void as3_destroy();
19
20 #endif //__as3_compiler_h__