chkconf.h

来自「很牛的GUI源码wxWidgets-2.8.0.zip 可在多种平台下运行.」· C头文件 代码 · 共 49 行

H
49
字号
/* * Name:        wx/os2/chkconf.h * Purpose:     Compiler-specific configuration checking * Author:      Julian Smart * Modified by: * Created:     01/02/97 * RCS-ID:      $Id: chkconf.h,v 1.4 2006/06/20 12:57:30 ABX Exp $ * Copyright:   (c) Julian Smart * Licence:     wxWindows licence *//* THIS IS A C FILE, DON'T USE C++ FEATURES (IN PARTICULAR COMMENTS) IN IT */#ifndef _WX_OS2_CHKCONF_H_#define _WX_OS2_CHKCONF_H_/*   wxDisplay is not implemented for OS/2, use stub common version instead. */#if wxUSE_DISPLAY#   undef wxUSE_DISPLAY#   define wxUSE_DISPLAY 0#endif /* wxUSE_DISPLAY *//* Watcom builds for OS/2 port are setup.h driven and setup.h is   automatically generated from include/wx/setup_inc.h so we have   to disable here features not supported currently or enable   features required */#ifdef __WATCOMC__#if wxUSE_STACKWALKER#   undef wxUSE_STACKWALKER#   define wxUSE_STACKWALKER 0#endif /* wxUSE_STACKWALKER */#if !wxUSE_POSTSCRIPT#   undef wxUSE_POSTSCRIPT#   define wxUSE_POSTSCRIPT 1#endif#if wxUSE_MS_HTML_HELP#   undef wxUSE_MS_HTML_HELP#   define wxUSE_MS_HTML_HELP 0#endif#endif /* __WATCOM__ */#endif /* _WX_OS2_CHKCONF_H_ */

⌨️ 快捷键说明

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