| // Copyright 2015 Google Inc. All Rights Reserved. |
| // |
| // Licensed under the Apache License, Version 2.0 (the "License"); |
| // you may not use this file except in compliance with the License. |
| // You may obtain a copy of the License at |
| // |
| // http://www.apache.org/licenses/LICENSE-2.0 |
| // |
| // Unless required by applicable law or agreed to in writing, software |
| // distributed under the License is distributed on an "AS IS" BASIS, |
| // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| // See the License for the specific language governing permissions and |
| // limitations under the License. |
| |
| // Module Overview: Starboard Export module |
| // |
| // Provides macros for properly exporting or importing symbols from shared |
| // libraries. |
| |
| #ifndef STARBOARD_EXPORT_H_ |
| #define STARBOARD_EXPORT_H_ |
| |
| #include "starboard/configuration.h" |
| |
| // SB_EXPORT: Specification for a symbol that should be exported when building |
| // the DLL and imported when building code that uses the DLL. |
| |
| // SB_EXPORT_PRIVATE: Specification for a symbol that should be exported or |
| // imported for testing purposes only. |
| |
| // SB_IMPORT: Specification for a symbol that is expected to be defined |
| // externally to this module. |
| |
| #if defined(COMPONENT_BUILD) || SB_IS(LIBRARY) |
| // COMPONENT_BUILD is defined when generating shared libraries for each project, |
| // rather than static libraries. This means we need to be careful about |
| // EXPORT/IMPORT. |
| // SB_IS_LIBRARY is defined when building Starboard as a shared library to be |
| // linked into a client app. In this case, we want to explicitly define |
| // EXPORT/IMPORT so that Starboard's symbols are visible to such clients. |
| #if defined(STARBOARD_IMPLEMENTATION) |
| // STARBOARD_IMPLEMENTATION is defined when building the Starboard library |
| // sources, and shouldn't be defined when building sources that are clients of |
| // Starboard. |
| #define SB_EXPORT SB_EXPORT_PLATFORM |
| #define SB_EXPORT_PRIVATE SB_EXPORT_PLATFORM |
| #define SB_IMPORT SB_IMPORT_PLATFORM |
| #else // defined(STARBOARD_IMPLEMENTATION) |
| #define SB_EXPORT SB_IMPORT_PLATFORM |
| #define SB_EXPORT_PRIVATE SB_IMPORT_PLATFORM |
| #define SB_IMPORT SB_EXPORT_PLATFORM |
| #endif |
| #else // defined(COMPONENT_BUILD) || SB_IS(LIBRARY) |
| #define SB_EXPORT |
| #define SB_EXPORT_PRIVATE |
| #define SB_IMPORT |
| #endif // defined(COMPONENT_BUILD) |
| |
| #endif // STARBOARD_EXPORT_H_ |