From 02962ba848d1f7d58fe0f12a783400fc15e7260b Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Sun, 31 Jul 2011 03:14:25 +0200 Subject: [PATCH] Add missing include to serialize.h --- src/serialize.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/serialize.h b/src/serialize.h index cb3a3ea03..c2bfa2780 100644 --- a/src/serialize.h +++ b/src/serialize.h @@ -34,6 +34,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 #define mlock(p, n) VirtualLock((p), (n)); #define munlock(p, n) VirtualUnlock((p), (n)); #else