aptypes.h

来自「本程序为ST公司开发的源代码」· C头文件 代码 · 共 51 行

H
51
字号
/*****************************************************************************//*                                                                           *//* <C> STMicroelectronics - copyright information                            *//*                                                                           *//*                                                                           *//* COMMENT }DOCUMENTATION                                                    *//* File Name     :: aptypes.h                                                *//* Creation Date :: September 2005                                           *//* Author        :: Ondrej Trubac                                            *//* Version       :: $Revision: 1.4 $                                         *//* Last change   :: $Date: 2006/09/18 09:55:22 $ by $Author: belardi $ *//* Description   :: Basic types for Accordo+ project                         *//* }                                                                         *//*****************************************************************************//*************************************************** *  * COPYRIGHT (C) ST Microelectronics  2005 *            All Rights Reserved * **************************************************** * * STM CVS Log: * * $Log: aptypes.h,v $ * Revision 1.4  2006/09/18 09:55:22  belardi * Corrected CVS keyword usage * * Revision 1.3  2006/09/18 09:24:02  belardi * Added Log CVS keyword into file header * * ***************************************************/#ifndef DEFINE_APTYPES_H#define DEFINE_APTYPES_Htypedef unsigned char uint8;typedef unsigned short int uint16;typedef short int int16;typedef unsigned int uint32;typedef unsigned int UInt;typedef int int32;#define MAX_UINT_VALUE 0xFFFFFFFF#ifndef NULL#define NULL ((void*)0)#endif#endif

⌨️ 快捷键说明

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