NIM PC Cross Platform SDK
载入中...
搜索中...
未找到
nim_tools_http_export.h
浏览该文件的文档.
1
9#ifndef NIM_TOOLS_HTTP_EXPORT_H_
10#define NIM_TOOLS_HTTP_EXPORT_H_
11
12#if defined(NIM_TOOLS_HTTP_IMPLEMENTATION)
13#if defined(WIN32)
14#define NIM_TOOLS_HTTP_EXPORT __declspec(dllexport)
15#else
16#define NIM_TOOLS_HTTP_EXPORT __attribute__((visibility("default")))
17#endif // WIN32
18#else
19#if defined(WIN32)
20#define NIM_TOOLS_HTTP_EXPORT __declspec(dllimport)
21#else
22#define NIM_TOOLS_HTTP_EXPORT __attribute__((visibility("default")))
23#endif WIN32
24#endif // NIM_TOOLS_HTTP_IMPLEMENTATION
25
26#endif // NIM_TOOLS_HTTP_EXPORT_H_