--- BasiliskII/src/Windows/extfs_windows.cpp 2005/01/30 21:42:15 1.2 +++ BasiliskII/src/Windows/extfs_windows.cpp 2007/01/22 17:14:06 1.3 @@ -383,3 +383,10 @@ bool extfs_rename(const char *old_path, // Now rename file return rename(old_path, new_path) == 0; } + + +// Convert from the host OS filename encoding to MacRoman +const char *host_encoding_to_macroman(const char *filename) +{ + return filename; +}