diff options
author | Tom Rondeau <trondeau@vt.edu> | 2013-01-24 09:26:19 -0500 |
---|---|---|
committer | Nicholas Corgan <nick.corgan@ettus.com> | 2013-02-06 12:35:07 -0800 |
commit | 8bf083a99c8a0d43d365bdd9ad90e3d840c582e7 (patch) | |
tree | 414464f35f2bb9f0163c61015a8501c6a5941345 /gruel | |
parent | 256b438259469ff9ab58572c73f6444c79c24f1c (diff) |
gruel: need to include windows.h to know about HANDLE.
Diffstat (limited to 'gruel')
-rw-r--r-- | gruel/src/include/gruel/thread.h | 4 |
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; |