2014-02-24 14:39:10 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////////////////////////
|
2014-04-30 13:46:41 -04:00
|
|
|
// Copyright (c) 2011 Waves Audio Ltd. All rights reserved.
|
2014-02-24 14:39:10 -05:00
|
|
|
// \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__
|
|
|
|
|