1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/media/webrtc/signaling/include/CC_Common.h Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,34 @@ 1.4 +/* This Source Code Form is subject to the terms of the Mozilla Public 1.5 + * License, v. 2.0. If a copy of the MPL was not distributed with this 1.6 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 1.7 + 1.8 +#pragma once 1.9 + 1.10 +#include "SharedPtr.h" 1.11 + 1.12 +#ifndef ECC_API 1.13 +#ifdef ECC_EXPORT 1.14 +#define ECC_API _declspec(dllexport) 1.15 +#elif ECC_IMPORT 1.16 +#define ECC_API _declspec(dllimport) 1.17 +#else 1.18 +#define ECC_API 1.19 +#endif 1.20 +#endif 1.21 + 1.22 +namespace CSF 1.23 +{ 1.24 + DECLARE_NS_PTR(CallControlManager) 1.25 + DECLARE_NS_PTR_VECTOR(PhoneDetails) 1.26 + DECLARE_NS_PTR(CC_Service) 1.27 + DECLARE_NS_PTR(VideoControl) 1.28 + DECLARE_NS_PTR(AudioControl) 1.29 + DECLARE_NS_PTR_VECTOR(CC_Device) 1.30 + DECLARE_NS_PTR(CC_DeviceInfo) 1.31 + DECLARE_NS_PTR(CC_CallServerInfo) 1.32 + DECLARE_NS_PTR(CC_FeatureInfo) 1.33 + DECLARE_NS_PTR_VECTOR(CC_Line) 1.34 + DECLARE_NS_PTR(CC_LineInfo) 1.35 + DECLARE_NS_PTR_VECTOR(CC_Call) 1.36 + DECLARE_NS_PTR(CC_CallInfo) 1.37 +}