Watcom fixes after recent wxFile changes.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29457 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -210,7 +210,7 @@ enum wxSeekMode
|
|||||||
#define wxWrite _write(fd, (const char *)buf, nCount)
|
#define wxWrite _write(fd, (const char *)buf, nCount)
|
||||||
#endif
|
#endif
|
||||||
#else
|
#else
|
||||||
#ifdef __DMC__
|
#if defined(__DMC__) || defined(__WATCOMC__)
|
||||||
#define wxRead ::read
|
#define wxRead ::read
|
||||||
#define wxWrite ::write
|
#define wxWrite ::write
|
||||||
#else
|
#else
|
||||||
@@ -228,7 +228,11 @@ enum wxSeekMode
|
|||||||
#define wxTell _tell
|
#define wxTell _tell
|
||||||
#endif
|
#endif
|
||||||
#define wxFsync _commit
|
#define wxFsync _commit
|
||||||
#define wxEof _eof
|
#if defined(__WATCOMC__)
|
||||||
|
#define wxEof ::eof
|
||||||
|
#else
|
||||||
|
#define wxEof _eof
|
||||||
|
#endif
|
||||||
|
|
||||||
#if wxUSE_UNICODE
|
#if wxUSE_UNICODE
|
||||||
#if wxUSE_UNICODE_MSLU
|
#if wxUSE_UNICODE_MSLU
|
||||||
|
Reference in New Issue
Block a user