routines - we now have FileUtils_Windows.cpp, FileUtils_Mac.cpp and FileUtils_Unix.cpp. The FileUtils_Mac.cpp is based on code submitted by Josh Portway and add uses the carbon API for searching for files.
10 lines
302 B
C++
10 lines
302 B
C++
// moved each platforms file access definitions into their own file
|
|
// to make it easier to manage them.
|
|
#if defined(WIN32) && !defined(__CYGWIN__)
|
|
#include "FileUtils_Windows.cpp"
|
|
#elif defined(TARGET_API_MAC_CARBON)
|
|
#include "FileUtils_Mac.cpp"
|
|
#else
|
|
#include "FileUtils_Unix.cpp"
|
|
#endif
|