X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=lib%2Fas3%2Ffiles.h;h=ae31212f0c6a57c3ae38d7a13e90396129cb0e82;hb=0466de1ec2360f00408c531a15aa5146e268228d;hp=70fbb54865bfe70181e923d2b14a1a65389bf2e9;hpb=6280f844ee2e70d15c06e49d2caec41308c26aae;p=swftools.git diff --git a/lib/as3/files.h b/lib/as3/files.h index 70fbb54..ae31212 100644 --- a/lib/as3/files.h +++ b/lib/as3/files.h @@ -22,15 +22,25 @@ #ifndef __avm2_files_h__ #define __avm2_files_h__ +typedef struct _include_dir { + char*path; + struct _include_dir*next; +} include_dir_t; + extern int current_line; extern int current_column; extern char* current_filename; extern char* current_filename_short; +extern include_dir_t* current_include_dirs; void add_include_dir(char*dir); -char* enter_file(char*filename, void*state); -FILE* enter_file2(char*filename, void*state); +char*find_file(const char*filename); +void enter_file(const char*name, const char*filename, void*state); +FILE* enter_file2(const char*name, const char*filename, void*state); void* leave_file(); +char* concat_paths(const char*base, const char*add); +char* normalize_path(const char*path); + #endif