select_compiler.h

来自「手机游戏绘图类」· C头文件 代码 · 共 34 行

H
34
字号
//////////////////////////////////////////////////////////////////////////////
//
// PocketHAL
// Copyright 2004 by Thierry Tremblay
//
//////////////////////////////////////////////////////////////////////////////

#ifndef POCKETHAL_SELECT_COMPILER_H
#define POCKETHAL_SELECT_COMPILER_H



#if defined(__GNUC__) || defined(__GCC32__)
// GCC
#define PHAL_COMPILER_CONFIG <PocketHAL/config/compiler/gcc.h>

#elif defined(__CW32__)
// Code Warrior
#define PHAL_COMPILER_CONFIG <PocketHAL/config/compiler/codewarrior.h>

#elif defined(_MSC_VER) || defined(__VC32__)
// Visual C
#define PHAL_COMPILER_CONFIG <PocketHAL/config/compiler/visualc.h>

#else

#error "Unknown compiler"

#endif



#endif

⌨️ 快捷键说明

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