?? types.h
字號:
/************************************************************************
*
* Module name : TYPES.H
*
* Module description :
* This header file defines new types and symbols for RTMK.
*
* Project : RTMK
*
* Target platform : DOS
*
* Compiler & Library : BC++ 3.1
*
* Author : Richard Shen
*
* Creation date : 17 August, 1995
*
************************************************************************/
#ifndef TYPES_H
#define TYPES_H
#include <stddef.h>
#ifndef XTYPES_H
/* these following have already been defined in xtypes.h */
typedef unsigned char uchar;
typedef unsigned int uint;
typedef unsigned long ulong;
#ifdef __cplusplus
enum BOOLEAN { FALSE, TRUE };
#else
#ifdef __DOS__
typedef int BOOLEAN;
#else
typedef uchar BOOLEAN;
#endif /* __DOS__ */
#define FALSE 0
#define TRUE 1
#endif /* __cplusplus */
#ifdef __cplusplus
# define __CPPARGS ...
#else
# define __CPPARGS void
#endif /* __cplusplus */
#endif /* XTYPES_H */
typedef BOOLEAN bool;
#endif /* TYPES_H */
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -