export.h

来自「这是一段游戏修改工具的源代码.ring3功能由dephi开发,驱动是C开发.希望」· 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 + -
显示快捷键?