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

📄 dockit_defs.h

📁 非常好用的可移植的多平台C/C++源代码编辑器
💻 H
字号:
#ifndef DOCKIT_DEFS_H
#define DOCKIT_DEFS_H

/*
 * If we're using wx in Dynamic Library format do we
 * want wxDockIt to be in DLL form as well?
 */
#if defined(WXUSINGDLL) && \
    (defined(WXMAKING_DOCKIT_DLL) || defined(WXUSING_DOCKIT_DLL))

#if defined(WXMAKING_DOCKIT_DLL)
    // When building the DLL WXDOCKIT_DECLSPEC exports classes
#   define WXDOCKIT_DECLSPEC            WXEXPORT
#elif defined(WXUSING_DOCKIT_DLL)
    // When using the DLL WXDOCKIT_DECLSPEC imports classes
#   define WXDOCKIT_DECLSPEC            WXIMPORT
#endif // defined(WXBUILD_DOCKIT_DLL)

#else
// When building the static library nullify the effect of WXDOCKIT_DECLSPEC
#define WXDOCKIT_DECLSPEC
#endif // WXUSINGDLL && (WXMAKING_DOCKIT_DLL || WXUSING_DOCKIT_DLL)

#endif // DOCKIT_DEFS_H

⌨️ 快捷键说明

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