mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-17 12:16:30 +01:00
untested fix for compiling waves audiobackend on case-sensitive FS with mingw.
This commit is contained in:
parent
d75d6a833a
commit
cd60fd9dfe
16 changed files with 20 additions and 10 deletions
28
libs/backends/wavesaudio/wavesapi/WavesPublicAPI/WTErr.h
Normal file
28
libs/backends/wavesaudio/wavesapi/WavesPublicAPI/WTErr.h
Normal 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__
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue