For later use..
[jack2.git] / windows / JackCompilerDeps_os.h
blob858cbd8f607e64297879fa9ec81698934330f1cf
1 /*
2 Copyright (C) 2004-2005 Grame
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.
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.
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.
20 #ifndef __JackCompilerDeps_WIN32__
21 #define __JackCompilerDeps_WIN32__
23 #if __GNUC__
24 #ifndef POST_PACKED_STRUCTURE
25 /* POST_PACKED_STRUCTURE needs to be a macro which
26 expands into a compiler directive. The directive must
27 tell the compiler to arrange the preceding structure
28 declaration so that it is packed on byte-boundaries rather
29 than use the natural alignment of the processor and/or
30 compiler.
32 #if (__GNUC__< 4) /* Does not seem to work with GCC 3.XX serie */
33 #define POST_PACKED_STRUCTURE
34 #elif defined(JACK_32_64)
35 #define POST_PACKED_STRUCTURE __attribute__((__packed__))
36 #else
37 #define POST_PACKED_STRUCTURE
38 #endif
39 #endif
40 #define MEM_ALIGN(x,y) x __attribute__((aligned(y)))
41 #define EXPORT __declspec(dllexport)
42 #ifdef SERVER_SIDE
43 #define SERVER_EXPORT __declspec(dllexport)
44 #else
45 #define SERVER_EXPORT
46 #endif
47 #else
48 #define MEM_ALIGN(x,y) x
49 #define EXPORT __declspec(dllexport)
50 #ifdef SERVER_SIDE
51 #define SERVER_EXPORT __declspec(dllexport)
52 #else
53 #define SERVER_EXPORT
54 #endif
55 #endif
57 #endif