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

📄 w32compile.h

📁 一个任天堂掌上游戏机NDS的源代码
💻 H
字号:
/*************************************************************************** DSemu - The Next Generation                                             ** Compilation occurring on Windows detection [w32compile.h]               ** Copyright Imran Nazar, 2005; released under the BSD public licence.     ***************************************************************************/#ifndef __W32COMPILE_H_#define __W32COMPILE_H_// Pretty simple really. If we're on MSVC, cygwin or mingw, it's win32.#ifdef _MSC_VER#define COMPILING_ON_WINDERZ#endif//_MSC_VER#ifdef __MINGW32__#define COMPILING_ON_WINDERZ#endif//__MINGW32__#ifdef cygwin#define COMPILING_ON_WINDERZ#endif//cygwin#endif//__W32COMPILE_H_/*** EOF: w32compile.h ***************************************************/

⌨️ 快捷键说明

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