w32compile.h
来自「一个任天堂掌上游戏机NDS的源代码」· C头文件 代码 · 共 28 行
H
28 行
/*************************************************************************** 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 + =
减小字号Ctrl + -
显示快捷键?