📄 typedef.h
字号:
/*****************************************************************************
* 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -