1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
|
/*
* This source file is part of libRocket, the HTML/CSS Interface Middleware
*
* For the latest information, see http://www.librocket.com
*
* Copyright (c) 2008-2010 CodePoint Ltd, Shift Technology Ltd
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*
*/
#ifndef ROCKETCOREHEADER_H
#define ROCKETCOREHEADER_H
#include "Platform.h"
// Note: Changing a ROCKETCORE_API_INLINE method
// breaks ABI compatibility!!
#ifdef STATIC_LIB
#define ROCKET_STATIC_LIB
#pragma message("DEPRECATED: STATIC_LIB macro has been deprecated in favor of ROCKET_STATIC_LIB and support will be removed in a future release")
#endif
#if !defined ROCKET_STATIC_LIB
#if defined ROCKET_PLATFORM_WIN32
#if defined RocketCore_EXPORTS
#define ROCKETCORE_API __declspec(dllexport)
// Note: Changing a ROCKETCORE_API_INLINE method
// breaks ABI compatibility!!
// This results in an exported method from the DLL
// that may be inlined in DLL clients, or if not
// possible the client may choose to import the copy
// in the DLL if it can not be inlined.
#define ROCKETCORE_API_INLINE __declspec(dllexport) inline
#else
#define ROCKETCORE_API __declspec(dllimport)
// Note: Changing a ROCKETCORE_API_INLINE method
// breaks ABI compatibility!!
// Based on the warnngs emitted by GCC/MinGW if using
// dllimport and inline together, the information at
// http://msdn.microsoft.com/en-us/library/xa0d9ste.aspx
// using dllimport inline is tricky.
#if defined(_MSC_VER)
// VisualStudio dllimport inline is supported
// and may be expanded to inline code when the
// /Ob1 or /Ob2 options are given for inline
// expansion, or pulled from the DLL if it can
// not be inlined.
#define ROCKETCORE_API_INLINE __declspec(dllimport) inline
#else
// MinGW 32/64 dllimport inline is not supported
// and dllimport is ignored, so we avoid using
// it here to squelch compiler generated
// warnings.
#define ROCKETCORE_API_INLINE inline
#endif
#endif
#else
#define ROCKETCORE_API __attribute__((visibility("default")))
// Note: Changing a ROCKETCORE_API_INLINE method
// breaks ABI compatibility!!
#define ROCKETCORE_API_INLINE __attribute__((visibility("default"))) inline
#endif
#else
#define ROCKETCORE_API
// Note: Changing a ROCKETCORE_API_INLINE method
// breaks ABI compatibility!!
#define ROCKETCORE_API_INLINE inline
#endif
#endif
|