untested fix for compiling waves audiobackend on case-sensitive FS with mingw.

This commit is contained in:
Robin Gareus 2014-10-01 04:02:30 +02:00
parent d75d6a833a
commit cd60fd9dfe
16 changed files with 20 additions and 10 deletions

View file

@ -0,0 +1,28 @@
///////////////////////////////////////////////////////////////////////////////////////////////////////
// Copyright (c) 2011 Waves Audio Ltd. All rights reserved.
// \file WTErr.h, defines basic error type and "No Error" code
// All users may use their own error codes with this type, as long as eNoErr remains defined here
///////////////////////////////////////////////////////////////////////////////////////////////////////
#ifndef __WTErr_h__
#define __WTErr_h__
/* Copy to include:
#include "WavesPublicAPI/WTErr.h"
*/
#ifdef __cplusplus
extern "C" {
#endif
#include "WavesPublicAPI/wstdint.h"
typedef int32_t WTErr; // Waves Type Error
const WTErr eNoErr = 0;
#ifdef __cplusplus
} //extern "C" {
#endif
#endif // __WTErr_h__