summaryrefslogtreecommitdiff
path: root/gruel
diff options
context:
space:
mode:
authorTom Rondeau <trondeau@vt.edu>2013-01-24 09:26:19 -0500
committerNicholas Corgan <nick.corgan@ettus.com>2013-02-06 12:35:07 -0800
commit8bf083a99c8a0d43d365bdd9ad90e3d840c582e7 (patch)
tree414464f35f2bb9f0163c61015a8501c6a5941345 /gruel
parent256b438259469ff9ab58572c73f6444c79c24f1c (diff)
gruel: need to include windows.h to know about HANDLE.
Diffstat (limited to 'gruel')
-rw-r--r--gruel/src/include/gruel/thread.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/gruel/src/include/gruel/thread.h b/gruel/src/include/gruel/thread.h
index 72499808ca..0427a8efca 100644
--- a/gruel/src/include/gruel/thread.h
+++ b/gruel/src/include/gruel/thread.h
@@ -28,6 +28,10 @@
#include <boost/thread/condition_variable.hpp>
#include <vector>
+#if defined(_WIN32) || defined(__WIN32__) || defined(WIN32)
+#include <windows.h>
+#endif
+
namespace gruel {
typedef boost::thread thread;