mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-13 13:50:40 +01:00

Symbols under sdk/ are now exported using RTC_OBJC_EXPORT, while RTC_EXPORT is used for C++ symbols. Bug: webrtc:9419 Change-Id: Icdf7ee0e7b3faf4d7fec33e9b33a3b13260f45b7 Reviewed-on: https://webrtc-review.googlesource.com/102461 Reviewed-by: Peter Hanspers <peterhanspers@webrtc.org> Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org> Cr-Commit-Position: refs/heads/master@{#24886}
28 lines
880 B
C
28 lines
880 B
C
/*
|
|
* Copyright 2016 The WebRTC Project Authors. All rights reserved.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license
|
|
* that can be found in the LICENSE file in the root of the source
|
|
* tree. An additional intellectual property rights grant can be found
|
|
* in the file PATENTS. All contributing project authors may
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
*/
|
|
|
|
#ifndef SDK_OBJC_BASE_RTCMACROS_H_
|
|
#define SDK_OBJC_BASE_RTCMACROS_H_
|
|
|
|
#define RTC_OBJC_EXPORT __attribute__((visibility("default")))
|
|
|
|
#if defined(__cplusplus)
|
|
#define RTC_EXTERN extern "C" RTC_OBJC_EXPORT
|
|
#else
|
|
#define RTC_EXTERN extern RTC_OBJC_EXPORT
|
|
#endif
|
|
|
|
#ifdef __OBJC__
|
|
#define RTC_FWD_DECL_OBJC_CLASS(classname) @class classname
|
|
#else
|
|
#define RTC_FWD_DECL_OBJC_CLASS(classname) typedef struct objc_object classname
|
|
#endif
|
|
|
|
#endif // SDK_OBJC_BASE_RTCMACROS_H_
|