| | 1 | #ifdef WIN32 |
| | 2 | ///////////////////////////////////////////////////////////////////////////// |
| | 3 | // Disable unavoidable warning messages: |
| | 4 | |
| | 5 | // 4103: used #pragma pack to change alignment |
| | 6 | // 4114: same type qualifier used more than once |
| | 7 | // 4201: nonstandard extension used : nameless struct/union |
| | 8 | // 4237: "keyword" reserved for future use |
| | 9 | // 4251: class needs to have dll-interface to export class |
| | 10 | // 4275: non DLL-interface class used as base for DLL-interface class |
| | 11 | // 4290: C++ Exception Specification ignored |
| | 12 | // 4503: decorated name length exceeded, name was truncated |
| | 13 | // 4786: string too long - truncated to 255 characters |
| | 14 | |
| | 15 | #pragma warning(disable : 4103 4114 4201 4237 4251 4275 4290 4503 4335 4786) |
| | 16 | |
| | 17 | #endif // WIN32 |
| | 18 | |