Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Jemlich <pcgod@users.sourceforge.net>2011-11-11 21:56:14 +0400
committerBenjamin Jemlich <pcgod@users.sourceforge.net>2011-11-11 21:56:14 +0400
commitbb2ef526aaafc930ec3ed9af5d9defcc3ae2b108 (patch)
tree61406d61025e0968bf307f117b4156dc595b8f15 /src/Connection.h
parentc8d144762874cdbba37d304301ec2396ca16bf28 (diff)
Windows build fixes
Diffstat (limited to 'src/Connection.h')
-rw-r--r--src/Connection.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Connection.h b/src/Connection.h
index 70635026e..f02a7a93c 100644
--- a/src/Connection.h
+++ b/src/Connection.h
@@ -31,6 +31,7 @@
#ifndef CONNECTION_H_
#define CONNECTION_H_
+#include <QtCore/QtGlobal>
#if QT_VERSION >= 0x040700
#include <QtCore/QElapsedTimer>
#else
@@ -39,6 +40,9 @@
#include <QtCore/QList>
#include <QtCore/QObject>
#include <QtNetwork/QSslSocket>
+#ifdef Q_OS_WIN
+#include <windows.h>
+#endif
#include "CryptState.h"