Unreal Engine SDK
V5.4.128
载入中...
搜索中...
未找到
Plugins
NertcPlugin
Source
NertcPlugin
Public
NertcBase.h
浏览该文件的文档.
1
6
#ifndef NERTC_BASE_H
7
#define NERTC_BASE_H
8
9
#if defined(_WIN32)
10
#ifndef WIN32_LEAN_AND_MEAN
11
#define WIN32_LEAN_AND_MEAN
12
#endif
13
#include <windows.h>
14
#define NERTC_UE_CALL __cdecl
15
#define NERTC_UE_API extern "C" __declspec(dllexport)
16
#elif defined(__APPLE__)
17
#define NERTC_UE_API __attribute__((visibility("default"))) extern "C"
18
#define NERTC_UE_CALL
19
#elif defined(__ANDROID__) || defined(__linux__)
20
#define NERTC_UE_API extern "C" __attribute__((visibility("default")))
21
#define NERTC_UE_CALL
22
#else
23
#define NERTC_UE_API extern "C"
24
#define NERTC_UE_CALL
25
#endif
26
27
#if defined __GNUC__
28
#define NERTC_DEPRECATED __attribute__((deprecated))
29
#elif defined(_MSC_VER)
30
#define NERTC_DEPRECATED __declspec(deprecated)
31
#else
32
#define NERTC_DEPRECATED
33
#endif
34
35
#endif
制作者
1.12.0