rpcsx/rpcs3/stdafx.h

49 lines
1 KiB
C
Raw Normal View History

#pragma once
#ifdef MSVC_CRT_MEMLEAK_DETECTION
#define _CRTDBG_MAP_ALLOC
#include <stdlib.h>
#include <crtdbg.h>
#endif
#define NOMINMAX
2015-12-02 10:23:25 +01:00
2016-06-07 22:24:20 +02:00
//#ifndef __STDC_CONSTANT_MACROS
//#define __STDC_CONSTANT_MACROS
//#endif
2014-07-10 22:54:12 +02:00
#if defined(MSVC_CRT_MEMLEAK_DETECTION) && defined(_DEBUG) && !defined(DBG_NEW)
#define DBG_NEW new ( _NORMAL_BLOCK , __FILE__ , __LINE__ )
#include "define_new_memleakdetect.h"
2014-07-10 22:54:12 +02:00
#endif
2015-07-01 00:25:52 +02:00
#pragma warning( disable : 4351 )
2015-01-25 17:23:24 +01:00
2016-05-13 16:01:48 +02:00
// MSVC bug workaround
#ifdef _MSC_VER
namespace std { inline namespace literals { inline namespace chrono_literals {}}}
#endif
#include "Utilities/types.h"
#include "Utilities/BEType.h"
#include "Utilities/Atomic.h"
#include "Utilities/StrFmt.h"
#include "Utilities/File.h"
#include "Utilities/Log.h"
2016-08-14 02:22:19 +02:00
#include <cstdlib>
#include <cstring>
#include <climits>
#include <exception>
#include <stdexcept>
#include <string>
#include <memory>
#include <vector>
#include <array>
#include <functional>
#include <unordered_map>
#include <algorithm>
#include <string_view>
2016-08-14 02:22:19 +02:00
using namespace std::literals;