--- BasiliskII/src/Windows/extfs_windows.cpp 2004/12/03 22:03:12 1.1 +++ BasiliskII/src/Windows/extfs_windows.cpp 2008/01/01 09:40:33 1.5 @@ -1,7 +1,7 @@ /* * extfs_windows.cpp - MacOS file system for access native file system access, Windows specific stuff * - * Basilisk II (C) 1997-2004 Christian Bauer + * Basilisk II (C) 1997-2008 Christian Bauer * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -383,3 +383,17 @@ 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; +} + +// Convert from MacRoman to host OS filename encoding +const char *macroman_to_host_encoding(const char *filename) +{ + return filename; +} +