Disable MSVC warnings

This commit is contained in:
Stas Degteff
2005-08-29 20:00:54 +00:00
parent 1f2fc4b132
commit 87a4e6f763
5 changed files with 26 additions and 7 deletions

View File

@@ -90,6 +90,12 @@
#define __inline__ __inline
#define __extension__
#define __MSVCRT__
#ifdef _DEBUG
/* C4786: 'identifier' : identifier was truncated to 'number'
characters in the debug information
*/
#pragma warning(disable: 4786)
#endif
#endif
/* --------------------------------------------------------------- */

View File

@@ -31,9 +31,6 @@
// ------------------------------------------------------------------
#if defined(_MSC_VER)
#pragma warning(disable: 4200)
#endif
#include <gdefs.h>
#if defined(__USE_NCURSES__)
#include <gcurses.h>
@@ -41,6 +38,9 @@
#if defined(__WIN32__)
#include <windows.h>
#endif
#if defined(_MSC_VER)
#pragma warning(disable: 4200)
#endif
// ------------------------------------------------------------------