ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/BasiliskII/src/Windows/extfs_windows.cpp
(Generate patch)

Comparing BasiliskII/src/Windows/extfs_windows.cpp (file contents):
Revision 1.1 by gbeauche, 2004-12-03T22:03:12Z vs.
Revision 1.5 by gbeauche, 2008-01-01T09:40:33Z

# Line 1 | Line 1
1   /*
2   *  extfs_windows.cpp - MacOS file system for access native file system access, Windows specific stuff
3   *
4 < *  Basilisk II (C) 1997-2004 Christian Bauer
4 > *  Basilisk II (C) 1997-2008 Christian Bauer
5   *
6   *  This program is free software; you can redistribute it and/or modify
7   *  it under the terms of the GNU General Public License as published by
# Line 383 | Line 383 | bool extfs_rename(const char *old_path,
383          // Now rename file
384          return rename(old_path, new_path) == 0;
385   }
386 +
387 +
388 + // Convert from the host OS filename encoding to MacRoman
389 + const char *host_encoding_to_macroman(const char *filename)
390 + {
391 +        return filename;
392 + }
393 +
394 + // Convert from MacRoman to host OS filename encoding
395 + const char *macroman_to_host_encoding(const char *filename)
396 + {
397 +        return filename;
398 + }
399 +

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines