fixed a few mem leaks, enter_file now doesn't do an implicit find_file anymore
[swftools.git] / lib / as3 / files.h
index 7243718..5d6420b 100644 (file)
 extern int current_line;
 extern int current_column;
 extern char* current_filename;
+extern char* current_filename_short;
 
 void add_include_dir(char*dir);
 
-char* enter_file(char*filename, void*state);
+char*find_file(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();
 
 #endif