More MSVC 2010 build fixes

This commit is contained in:
Pierre Bourdon 2013-03-29 07:55:56 -07:00
parent 38db520617
commit 194ada2481
3 changed files with 3 additions and 4 deletions

View File

@ -18,9 +18,8 @@
#ifndef _MIXER_H_
#define _MIXER_H_
#include <mutex>
#include "WaveFile.h"
#include "StdMutex.h"
// 16 bit Stereo
#define MAX_SAMPLES (1024 * 8)

View File

@ -29,7 +29,7 @@
// partial std::condition_variable implementation for win32/pthread
#include <mutex>
#include "StdMutex.h"
#if (_MSC_VER >= 1600) || (GCC_VERSION >= GCC_VER(4,3,0) && __GXX_EXPERIMENTAL_CXX0X__)
#define USE_RVALUE_REFERENCES

View File

@ -20,7 +20,7 @@
#if HAVE_PORTAUDIO
#include <mutex>
#include "StdMutex.h"
class CEXIMic : public IEXIDevice
{