⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 type_com.h

📁 ucos 在 arm9 芯片上的移植
💻 H
字号:
/*$Id: type_com.h,v 1.8 2008-05-09 06:55:56 dubi Exp $ *//*-----------------------------------------------------------------Title		:type_com.hSummary		:common type definationsAuthor		:EvItSelfCopyright (c) Pioneer Corporation-----------------------------------------------------------------*/#ifndef __TYPE_COM_H__#define __TYPE_COM_H__#define FALSE 0    #define TRUE  !FALSE    #define NULL    0typedef	    int		BOOL;/*signed*/typedef	    signed char	            Int8;typedef 	signed short	        Int16;typedef 	signed int		        Int32;typedef 	signed long long        Int64;  //add by zengming 2007/05/16/*unsigned*/typedef unsigned char	        uInt8;typedef unsigned short	        uInt16;typedef unsigned int	        uInt32;typedef unsigned long long      uInt64;  //add by zengming 2007/05/16typedef unsigned long           UW;#endif

⌨️ 快捷键说明

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