type.h
来自「ccs3.1 omap5910 platform」· C头文件 代码 · 共 40 行
H
40 行
/*
*/
#ifndef __TYPE_H__
#define __TYPE_H__
typedef unsigned short BIT16;
typedef unsigned short WORD;
typedef unsigned short UINT16;
typedef unsigned char BYTE;
typedef unsigned int UINT32;
typedef int INT32;
typedef signed char s8;
typedef unsigned char u8;
typedef signed short s16;
typedef unsigned short u16;
typedef signed int s32;
typedef unsigned int u32;
typedef unsigned char UWORD8;
typedef unsigned long UWORD32;
typedef unsigned short UWORD16;
#define TRUE 1
#define FALSE 0
typedef enum
{
False = 0,
True = 1
} BOOL;
void Delay(int Dtime);
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?