globally remove all trailing whitespace from ardour code base.
[ardour.git] / libs / backends / wavesaudio / wavesapi / WavesPublicAPI / 1.0 / WavesPublicAPI_Defines.h
1 /*
2     Copyright (C) 2014 Waves Audio Ltd.
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #ifndef __WavesPublicAPI_Defines_h__
21         #define __WavesPublicAPI_Defines_h__
22
23 /*Copy to include
24 #include "WavesPublicAPI_Defines.h"
25 */
26
27 #ifdef __APPLE__
28
29     #ifdef __GNUC__
30         #define WPAPI_DllExport __attribute__ ((visibility("default")))
31         #define __WPAPI_CDECL
32         #define __WPAPI_STDCALL
33
34     #else
35
36         #define WPAPI_DllExport __declspec(export)
37         #define __WPAPI_CDECL
38         #define __WPAPI_STDCALL
39
40     #endif
41
42 #endif
43
44
45 #ifdef PLATFORM_WINDOWS
46     #define WPAPI_DllExport __declspec(dllexport)
47         #define __WPAPI_CDECL __cdecl
48         #define __WPAPI_STDCALL __stdcall
49 #endif
50
51 #ifdef __linux__
52
53     #define WPAPI_DllExport __attribute__ ((visibility("default")))
54
55         #define __WPAPI_CDECL
56         #define __WPAPI_STDCALL
57
58 #endif
59
60 #endif //__WavesPublicAPI_Defines_h__