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

Comparing BasiliskII/src/Unix/extfs_unix.cpp (file contents):
Revision 1.18 by cebix, 2002-01-15T14:58:37Z vs.
Revision 1.22 by asvitkine, 2007-01-24T02:37:06Z

# Line 1 | Line 1
1   /*
2   *  extfs_unix.cpp - MacOS file system for access native file system access, Unix specific stuff
3   *
4 < *  Basilisk II (C) 1997-2002 Christian Bauer
4 > *  Basilisk II (C) 1997-2005 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 375 | Line 375 | bool extfs_rename(const char *old_path,
375          // Now rename file
376          return rename(old_path, new_path) == 0;
377   }
378 +
379 +
380 + // Convert from the host OS filename encoding to MacRoman
381 + const char *host_encoding_to_macroman(const char *filename)
382 + {
383 +        return filename;
384 + }
385 +
386 + // Convert from MacRoman to host OS filename encoding
387 + const char *macroman_to_host_encoding(const char *filename)
388 + {
389 +        return filename;
390 + }
391 +
392 +

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines