CyaSSL 3.0.0

Dependents:   HTTPClient-SSL HTTPClient HTTPClient-SSL http_access ... more

Committer:
wolfSSL
Date:
Wed Dec 03 05:24:18 2014 +0000
Revision:
3:64d4f7cb83d5
Parent:
0:1239e9b70ca2
added IGNORE_KEY_EXTENSIONS

Who changed what in which revision?

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