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-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 |
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 |
+ |
} |