|
NIM 跨平台 C++ SDK
|
浏览该文件的文档.
9#ifndef NIM_TOOLS_HTTP_EXPORT_H_
10#define NIM_TOOLS_HTTP_EXPORT_H_
12#if defined(NIM_TOOLS_HTTP_IMPLEMENTATION)
14#define NIM_TOOLS_HTTP_EXPORT __declspec(dllexport)
16#define NIM_TOOLS_HTTP_EXPORT __attribute__((visibility("default")))
20#define NIM_TOOLS_HTTP_EXPORT __declspec(dllimport)
22#define NIM_TOOLS_HTTP_EXPORT __attribute__((visibility("default")))