typedef.h

来自「这是操作系统中的内存管理的全部debug程序」· C头文件 代码 · 共 36 行

H
36
字号
/*****************************************************************************
* GL_TYPES.H                                                  IBM Confidential  *
*****************************************************************************/


/****************************************************************************
 *
 *  GL_TYPES.H
 *
 *    Purpose : global type definitions
 *
 *
 *
 * No. Date     Who Function          Description of Change
 * --- -------- --- ----------------- ------------------------------------------
 * 001 3/25/05  ***                   Create     
 *****************************************************************************/
typedef unsigned long int   Uint32;
typedef signed long int     Sint32;
typedef unsigned short int  Uint16;
typedef signed short int    Sint16;
typedef unsigned char       Uint8;
typedef signed char         Sint8;
typedef void*               ObjID;
typedef unsigned char       BOOL;

#define NULL  0      /* Null type for undefined pointers */

/************************** Bool_type *******************************/
#define FALSE 0
#define TRUE  1

Uint16 *WordPointerCheck ( ObjID pbInPointer );


⌨️ 快捷键说明

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