1 |
|
/* |
2 |
|
* extfs_windows.cpp - MacOS file system for access native file system access, Windows specific stuff |
3 |
|
* |
4 |
< |
* Basilisk II (C) 1997-2005 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 |
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 |
+ |
|