⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 export.h

📁 UC Library Extensions UnderC comes with a pocket implementation of the standard C++ libraries, wh
💻 H
字号:
// export.h

#ifndef __EXPORT_H
#define __EXPORT_H

#define CEXPORT extern "C"  EXPORT

// *ch 1.2.9 patch
#ifndef _WIN32
# ifndef __BEOS__
#   define __declspec(x)
# endif
# define XAPI
#else
# define XAPI __stdcall
#endif

#ifdef WITHIN_UC
# define EXPORT __declspec(dllexport)
#else
# ifdef __UNDERC__
#   include <string>
    using std::string;
#   define EXPORT
# else
// using this to import into a C++ prg from the DLL
#   define EXPORT __declspec(dllimport)
#   include "mstring.h"
# endif
#endif

#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -