summaryrefslogtreecommitdiff
path: root/libs/backends/wavesaudio/wavesapi/BasicTypes
diff options
context:
space:
mode:
Diffstat (limited to 'libs/backends/wavesaudio/wavesapi/BasicTypes')
-rw-r--r--libs/backends/wavesaudio/wavesapi/BasicTypes/WCFourCC.h4
-rw-r--r--libs/backends/wavesaudio/wavesapi/BasicTypes/WTByteOrder.h2
-rw-r--r--libs/backends/wavesaudio/wavesapi/BasicTypes/WUComPtr.h8
-rw-r--r--libs/backends/wavesaudio/wavesapi/BasicTypes/WUMathConsts.h2
-rw-r--r--libs/backends/wavesaudio/wavesapi/BasicTypes/WUTypes.h4
5 files changed, 10 insertions, 10 deletions
diff --git a/libs/backends/wavesaudio/wavesapi/BasicTypes/WCFourCC.h b/libs/backends/wavesaudio/wavesapi/BasicTypes/WCFourCC.h
index cbb3e48e33..571a2341be 100644
--- a/libs/backends/wavesaudio/wavesapi/BasicTypes/WCFourCC.h
+++ b/libs/backends/wavesaudio/wavesapi/BasicTypes/WCFourCC.h
@@ -19,7 +19,7 @@
#ifndef __WCFourCC_h__
#define __WCFourCC_h__
-
+
/* Copy to include
#include "BasicTypes/WCFourCC.h"
*/
@@ -206,7 +206,7 @@ inline bool operator!=(const WCFourCC in_left, const WCFourCC in_right)
#define kDefaultFourCC WCFourCC::kDefaultFourCC_prv()
static const WCFourCC kZeroFourCC(0, wvNS::wvBO::compiler_byte_order);
-
+
#endif //#if !defined(__WCFourCC_h__)
diff --git a/libs/backends/wavesaudio/wavesapi/BasicTypes/WTByteOrder.h b/libs/backends/wavesaudio/wavesapi/BasicTypes/WTByteOrder.h
index 8b5c73578f..c217fa7a1c 100644
--- a/libs/backends/wavesaudio/wavesapi/BasicTypes/WTByteOrder.h
+++ b/libs/backends/wavesaudio/wavesapi/BasicTypes/WTByteOrder.h
@@ -75,7 +75,7 @@
#endif
namespace wvNS {
-
+
namespace wvBO // namespace Waves::ByteOrder
{
typedef int byte_order_type; // we use int rather than enum because some compilers cannot resolve enum constants at compile-time. There are only two options anyway :-)
diff --git a/libs/backends/wavesaudio/wavesapi/BasicTypes/WUComPtr.h b/libs/backends/wavesaudio/wavesapi/BasicTypes/WUComPtr.h
index b66f720a34..e8e633d927 100644
--- a/libs/backends/wavesaudio/wavesapi/BasicTypes/WUComPtr.h
+++ b/libs/backends/wavesaudio/wavesapi/BasicTypes/WUComPtr.h
@@ -19,7 +19,7 @@
#ifndef __WUComPtr_h__
#define __WUComPtr_h__
-
+
/* Copy to include
#include "BasicTypes/WUComPtr.h"
*/
@@ -36,7 +36,7 @@ typedef int32_t wvComPtr[2];
//================================================================================
inline uint32_t vfpConvertDPtr(const void* InPointer, void* pData)
//================================================================================
-{
+{
uint64_t *pL = (uint64_t *)pData;
*pL = (uint64_t)InPointer;
return (uint32_t)sizeof(uint64_t);
@@ -64,7 +64,7 @@ inline wvComPtr PackToComPtr(const intptr_t in_PtrToPack)
// #ifdef for x32 - intptr_t is 32 bit
// retVal.LSW = int32_t(in_PtrToPack);
// retVal.MSW = 0;
-
+
return retVal;
}
@@ -73,7 +73,7 @@ inline intptr_t UnpackComPtr( const wvComPtr in_ComPtrToUnpack)
// and unpack it to intptr_t type
{
intptr_t retVal;
-
+
// This unpacking is xPlatform coding for x32 and x64
// #ifdef for x64 - intptr_t is 64 bit so use intptr_t instead of int64_t
int64_t PtrAt64 = static_cast<int64_t>(in_ComPtrToUnpack.MSW);
diff --git a/libs/backends/wavesaudio/wavesapi/BasicTypes/WUMathConsts.h b/libs/backends/wavesaudio/wavesapi/BasicTypes/WUMathConsts.h
index e918b78c71..6ee16c2ad6 100644
--- a/libs/backends/wavesaudio/wavesapi/BasicTypes/WUMathConsts.h
+++ b/libs/backends/wavesaudio/wavesapi/BasicTypes/WUMathConsts.h
@@ -19,7 +19,7 @@
#ifndef __WUMathConsts_h__
#define __WUMathConsts_h__
-
+
/* Copy to include:
#include "BasicTypes/WUMathConsts.h"
*/
diff --git a/libs/backends/wavesaudio/wavesapi/BasicTypes/WUTypes.h b/libs/backends/wavesaudio/wavesapi/BasicTypes/WUTypes.h
index e1d073db7f..8c6ac71cfc 100644
--- a/libs/backends/wavesaudio/wavesapi/BasicTypes/WUTypes.h
+++ b/libs/backends/wavesaudio/wavesapi/BasicTypes/WUTypes.h
@@ -84,7 +84,7 @@ public: enum Type
//********************************************************************************
// Files
-//! file (and resource container) opening permissions
+//! file (and resource container) opening permissions
// Note: When opening with eFMWriteOnly on existing file, writing to the file will append, not overwrite, Shai, 9/8/2007.
enum WEPermitions{ eFMReadOnly, eFMWriteOnly, eFMReadWrite};
@@ -133,7 +133,7 @@ enum WESystemFolders{
eWavesPreferencesFolder2, // Mac: "/Users/username/Library/Preferences/Waves Audio"
// Win: "C:\Users\username\AppData\Roaming\Waves Audio\Preferences"
-
+
eNumberOfSystemFolders
};