]> git.sur5r.net Git - freertos/blob - FreeRTOS-Plus/Source/WolfSSL/cyassl/ctaocrypt/visibility.h
6bb4953a350e990a37225beb29fbf7ec57218420
[freertos] / FreeRTOS-Plus / Source / WolfSSL / cyassl / ctaocrypt / visibility.h
1 /* visibility.h
2  *
3  * Copyright (C) 2006-2015 wolfSSL Inc.
4  *
5  * This file is part of wolfSSL. (formerly known as CyaSSL)
6  *
7  * wolfSSL is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * wolfSSL is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
20  */
21
22 /* Visibility control macros */
23
24 #ifndef CTAO_CRYPT_VISIBILITY_H
25 #define CTAO_CRYPT_VISIBILITY_H
26
27 /* fips compatibility @wc_fips */
28 #ifndef HAVE_FIPS
29     #include <wolfssl/wolfcrypt/visibility.h>
30     #define CYASSL_API   WOLFSSL_API
31         #define CYASSL_LOCAL WOLFSSL_LOCAL
32 #else
33 /* CYASSL_API is used for the public API symbols.
34         It either imports or exports (or does nothing for static builds)
35
36    CYASSL_LOCAL is used for non-API symbols (private).
37 */
38
39 #if defined(BUILDING_WOLFSSL)
40     #if defined(HAVE_VISIBILITY) && HAVE_VISIBILITY
41         #define CYASSL_API   __attribute__ ((visibility("default")))
42         #define CYASSL_LOCAL __attribute__ ((visibility("hidden")))
43     #elif defined(__SUNPRO_C) && (__SUNPRO_C >= 0x550)
44         #define CYASSL_API   __global
45         #define CYASSL_LOCAL __hidden
46     #elif defined(_MSC_VER)
47         #ifdef CYASSL_DLL
48             #define CYASSL_API extern __declspec(dllexport)
49         #else
50             #define CYASSL_API
51         #endif
52         #define CYASSL_LOCAL
53     #else
54         #define CYASSL_API
55         #define CYASSL_LOCAL
56     #endif /* HAVE_VISIBILITY */
57 #else /* BUILDING_WOLFSSL */
58     #if defined(_MSC_VER)
59         #ifdef CYASSL_DLL
60             #define CYASSL_API extern __declspec(dllimport)
61         #else
62             #define CYASSL_API
63         #endif
64         #define CYASSL_LOCAL
65     #else
66         #define CYASSL_API
67         #define CYASSL_LOCAL
68     #endif
69 #endif /* BUILDING_WOLFSSL */
70 #endif /* HAVE_FIPS */
71 #endif /* CTAO_CRYPT_VISIBILITY_H */
72