export.h
来自「UC Library Extensions UnderC comes wi」· C头文件 代码 · 共 33 行
H
33 行
// 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 + =
减小字号Ctrl + -
显示快捷键?