1
0
mirror of https://github.com/Ylianst/MeshAgent synced 2025-12-06 00:13:33 +00:00
Files
MeshAgent/webrtc/C# Sample/WebRTC.h
2017-10-12 14:28:03 -07:00

39 lines
1.5 KiB
C++

/*
Copyright 2014 Intel Corporation
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.
*/
// The following ifdef block is the standard way of creating macros which make exporting
// from a DLL simpler. All files within this DLL are compiled with the MICROSTACKWRAPPER_EXPORTS
// symbol defined on the command line. This symbol should not be defined on any project
// that uses this DLL. This way any other project whose source files include this file see
// MICROSTACKWRAPPER_API functions as being imported from a DLL, whereas this DLL sees symbols
// defined with this macro as being exported.
#ifdef MICROSTACKWRAPPER_EXPORTS
#define MICROSTACKWRAPPER_API __declspec(dllexport)
#else
#define MICROSTACKWRAPPER_API __declspec(dllimport)
#endif
// This class is exported from the MicrostackWrapper.dll
class MICROSTACKWRAPPER_API CMicrostackWrapper {
public:
CMicrostackWrapper(void);
// TODO: add your methods here.
};
extern MICROSTACKWRAPPER_API int nMicrostackWrapper;
MICROSTACKWRAPPER_API int fnMicrostackWrapper(void);