📄 type.h
字号:
/* type.h
*
* Copyright (c) 2000 Texas Instruments Incorporated
*
* Originally created by DNA Software,
* Modified by Russ Heeschen for the FlashBurn
* project.
*/
/*
* $Log:
*/
#if !defined( TYPE__H )
#define TYPE__H
typedef enum
{
FALSE = 0,
TRUE = !FALSE
} BOOL;
typedef float f32;
typedef long s32;
typedef unsigned long u32;
typedef short s16;
typedef unsigned short u16;
typedef unsigned char u8;
typedef signed char s8;
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -