Fixed Win32 DLL support.
[libfirm] / include / libfirm / begin.h
1 /*
2  * Copyright (C) 1995-2008 University of Karlsruhe.  All right reserved.
3  *
4  * This file is part of libFirm.
5  *
6  * This file may be distributed and/or modified under the terms of the
7  * GNU General Public License version 2 as published by the Free Software
8  * Foundation and appearing in the file LICENSE.GPL included in the
9  * packaging of this file.
10  *
11  * Licensees holding valid libFirm Professional Edition licenses may use
12  * this file in accordance with the libFirm Commercial License.
13  * Agreement provided with the Software.
14  *
15  * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
16  * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
17  * PURPOSE.
18  */
19
20 /**
21  * @file
22  * @brief       Should be included in all public firm headers at the beginning
23  * @author      Matthias Braun
24  * @version     $Id$
25  */
26 #ifndef FIRM_BEGIN_H
27 #define FIRM_BEGIN_H
28
29 /**
30  * @def FIRM_API
31  * Declaration specifier which marks a function/variable as being publicly
32  * visible outside the firm library/dll
33  */
34 #ifdef FIRM_DLL
35         #ifdef FIRM_BUILD
36                 #ifdef _WIN32
37                         #define FIRM_API extern __declspec(dllexport)
38                 #else
39                         #define FIRM_API extern __attribute__((visibility("default")))
40                 #endif
41         #else
42                 #ifdef _WIN32
43                         #define FIRM_API extern __declspec(dllimport)
44                 #else
45                         #define FIRM_API
46                 #endif
47         #endif
48 #else
49         #define  FIRM_API
50 #endif
51
52 /* mark declarations as C function */
53 #ifdef __cplusplus
54 extern "C" {
55 #endif
56
57 #endif