| OLD | NEW |
| 1 #ifndef _STDAFX_H | 1 #ifndef _STDAFX_H |
| 2 #define _STDAFX_H | 2 #define _STDAFX_H |
| 3 | 3 |
| 4 #if _MSC_VER > 1000 | 4 #if _MSC_VER > 1000 |
| 5 #pragma once | 5 #pragma once |
| 6 #endif // _MSC_VER > 1000 | 6 #endif // _MSC_VER > 1000 |
| 7 | 7 |
| 8 | 8 |
| 9 | 9 |
| 10 //#define STRICT | 10 //#define STRICT |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 #include <stdlib.h> | 71 #include <stdlib.h> |
| 72 #include <crtdbg.h> | 72 #include <crtdbg.h> |
| 73 | 73 |
| 74 | 74 |
| 75 #ifdef _MSC_VER | 75 #ifdef _MSC_VER |
| 76 #pragma warning(push) | 76 #pragma warning(push) |
| 77 // warning C4996: function call with parameters that might be unsafe | 77 // warning C4996: function call with parameters that might be unsafe |
| 78 #pragma warning(disable : 4996) | 78 #pragma warning(disable : 4996) |
| 79 #endif | 79 #endif |
| 80 | 80 |
| 81 | |
| 82 #define _CRTDBG_MAPALLOC | |
| 83 #endif // not _STDAFX_H | 81 #endif // not _STDAFX_H |
| 84 | 82 |
| 85 #ifndef countof | 83 #ifndef countof |
| 86 #define countof(x) (sizeof(x)/sizeof(*x)) | 84 #define countof(x) (sizeof(x)/sizeof(*x)) |
| 87 #endif | 85 #endif |
| 88 | 86 |
| 89 #define USE_CONSOLE | 87 #define USE_CONSOLE |
| 90 #include "Console.h" | 88 #include "Console.h" |
| 91 | 89 |
| 92 #include "BuildVariant.h" | 90 #include "BuildVariant.h" |
| OLD | NEW |