Portability updates.

committer: mfx <mfx> 1054071025 +0000
This commit is contained in:
Markus F.X.J. Oberhumer
2003-05-27 21:30:25 +00:00
parent 757bdd1264
commit b2949259c5
13 changed files with 105 additions and 61 deletions
+5 -3
View File
@@ -42,10 +42,12 @@
// direct screen access
**************************************************************************/
#if defined(_MSC_VER) && (_MSC_VER < 1200)
# pragma warning(disable: 4201) // nonstandard extension used: nameless struct/union
#if (ACC_CC_MSC && _MSC_VER >= 1000 && _MSC_VER < 1200)
/* avoid -W4 warnings in <conio.h> */
# pragma warning(disable: 4032)
/* avoid -W4 warnings in <windows.h> */
# pragma warning(disable: 4201 4214 4514)
#endif
#if defined(__RSXNT__)
# define timeval win32_timeval /* struct timeval already in <sys/time.h> */
#endif