Skip to content
Snippets Groups Projects
Commit 219c5380 authored by Dipl.-Ing. Jonas Stienen's avatar Dipl.-Ing. Jonas Stienen
Browse files

Removing WINNT version preproc overwrite from almost everywhere, troubling...

Removing WINNT version preproc overwrite from almost everywhere, troubling boost or tbb. Current (haha) windows is now required to access try-lock kernel functionality.
parent 1d8dcb17
No related branches found
No related tags found
No related merge requests found
......@@ -21,10 +21,6 @@
#include <ITABaseDefinitions.h>
#ifndef _WIN32_WINNT
#define _WIN32_WINNT 0x0500
#endif
#include <string>
#ifdef WIN32
#include <windows.h>
......
......@@ -21,8 +21,6 @@
#include <ITAUncopyable.h>
#define _WIN32_WINNT 0x0500
#include <windows.h>
/**
......
......@@ -32,11 +32,6 @@
#include <Windows.h>
#endif
// Weitere Includes
#ifndef _WIN32_WINNT
#define _WIN32_WINNT 0x0500
#endif
// Vorwrtsdeklarationen
class ITATimer;
......
......@@ -27,14 +27,14 @@ class ITA_BASE_API ITAUncopyable
{
protected:
// Erlaubt fr Unterklassen: Standardkonstruktor
ITAUncopyable() {};
inline ITAUncopyable() {};
// Erlaubt fr Unterklassen: Destruktor
virtual ~ITAUncopyable() {}
virtual inline ~ITAUncopyable() {};
private:
// Verboten fr alle: Kopierkonstruktor
ITAUncopyable(const ITAUncopyable&) {}
inline ITAUncopyable( const ITAUncopyable& ) {};
// Verboten fr alle: Zuweisungsoperator
ITAUncopyable& operator=( const ITAUncopyable& );
......
#include <ITAAtomicOps.h>
#define _WIN32_WINNT 0x0500
#include <windows.h>
typedef union
......
......@@ -3,7 +3,6 @@
#include "ITACriticalSectionImpl.h"
#define _WIN32_WINNT 0x0500
#include <windows.h>
class ITACriticalSectionWin32Impl : public ITACriticalSectionImpl {
......
......@@ -12,7 +12,6 @@
#include <cmath>
#define _WIN32_WINNT 0x0500
#include <windows.h>
#include "ITAException.h"
......
......@@ -4,7 +4,6 @@
#include <ITAException.h>
#define _WIN32_WINNT 0x0500
#include <windows.h>
ITAWinPCClock* ITAWinPCClock::m_pInstance = NULL;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment