mint.h
来自「空战游戏flacon源码」· C头文件 代码 · 共 35 行
H
35 行
/********************************************************************/
/* Copyright (C) 1997 MicroProse, Inc. All rights reserved */
/* */
/* Programs, statements and coded instructions within this file */
/* contain unpublished and proprietary information of MicroProse, */
/* Inc. and are thus protected by the Federal and International */
/* Copyright laws. They may not be copied, duplicated or disclosed */
/* to third parties in any form, in whole or in part, without the */
/* prior written consent of MicroProse, Inc. */
/* */
/********************************************************************/
#ifndef _MINT_H_
#define _MINT_H_
#define CHIPSET_ID SHI_CS_m_i486
#define CHIPSET_ID_STR "Intel i486"
#define CHIPSET_ID_NUM 486
#define CHIPSET_MAX_INT_POW 2 /* See MINT.DOC */
#define CHIPSET_LITTLE_ENDIAN
typedef signed char Int8;
typedef short Int16;
typedef long Int32;
typedef unsigned char UInt8;
typedef unsigned short UInt16;
typedef unsigned long UInt32;
#endif /* _MINT_H_ */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?