stdconst.h
来自「乐高机器人的源码,开发平台是IAR_for_AVR.」· C头文件 代码 · 共 49 行
H
49 行
//
// Programmer
//
// Date init 14.12.2004
//
// Reviser $Author:: Us8jamlo $
//
// Revision date $Date:: 3/04/05 2:59p $
//
// Filename $Workfile:: stdconst.h $
//
// Version $Revision:: 3 $
//
// Archive $Archive:: /LMS2006/Sys01/Main/Firmware/Source/stdconst.h $
//
// Platform C
//
#ifndef STDCONST
#define STDCONST
#ifndef NULL
#define NULL ((void *)0)
#endif
#define TRUE 1
#define FALSE 0
typedef unsigned char UCHAR;
typedef unsigned short USHORT;
typedef unsigned char UBYTE;
typedef signed char SBYTE;
typedef unsigned short int UWORD;
typedef signed short int SWORD;
typedef unsigned long ULONG;
typedef signed long SLONG;
typedef ULONG* PULONG;
typedef USHORT* PUSHORT;
typedef UCHAR* PUCHAR;
typedef char* PSZ;
#define BASETYPES
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?