13
0

Use PLATFORM_WINDOWS define instead of WIN32 in PBD::FileManager

This commit is contained in:
Tim Mayberry 2014-06-25 09:04:43 +10:00 committed by Paul Davis
parent 7bf392060e
commit 3000399ce1

View File

@ -233,7 +233,7 @@ FdFileDescriptor::open ()
* or it treats the file as a text stream and puts in
* line endings in etc
*/
#ifdef WIN32
#ifdef PLATFORM_WINDOWS
#define WRITE_FLAGS O_RDWR | O_CREAT | O_BINARY
#define READ_FLAGS O_RDONLY | O_BINARY
#else