diff options
Diffstat (limited to 'src/serialize.h')
-rw-r--r-- | src/serialize.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/serialize.h b/src/serialize.h index 698bdfe6a9..6b35773ac3 100644 --- a/src/serialize.h +++ b/src/serialize.h @@ -31,6 +31,7 @@ typedef unsigned long long uint64; #endif #ifdef __WXMSW__ +#include <windows.h> // This is used to attempt to keep keying material out of swap // Note that VirtualLock does not provide this as a guarantee on Windows, // but, in practice, memory that has been VirtualLock'd almost never gets written to @@ -59,7 +60,7 @@ class CDataStream; class CAutoFile; static const unsigned int MAX_SIZE = 0x02000000; -static const int VERSION = 40000; +static const int VERSION = 40100; static const char* pszSubVer = ""; static const bool VERSION_IS_BETA = true; |