diff options
Diffstat (limited to 'src/serialize.h')
-rw-r--r-- | src/serialize.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/serialize.h b/src/serialize.h index 857d0468d1..367e849b55 100644 --- a/src/serialize.h +++ b/src/serialize.h @@ -35,6 +35,7 @@ typedef unsigned long long uint64; // 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 // the pagefile except in rare circumstances where memory is extremely low. +#include <windows.h> #define mlock(p, n) VirtualLock((p), (n)); #define munlock(p, n) VirtualUnlock((p), (n)); #else |