basetype.h
来自「基于SAA7113的MPEG-4程序」· C头文件 代码 · 共 45 行
H
45 行
/*-------------------------------------------------------------------------------- ---- This software is confidential and proprietary and may be used ---- only as expressly authorized by a licensing agreement from ---- ---- Hantro Products Oy. ---- ---- In the event of publication, the following notice is applicable: ---- ---- (C) COPYRIGHT 2002 HANTRO PRODUCTS OY ---- ALL RIGHTS RESERVED ---- ---- The entire notice above must be reproduced on all copies. ---- -------------------------------------------------------------------------------------- Project : Penguin---- Abstract : User side data types.-------------------------------------------------------------------------------------- Version control information, please leave untouched.---- $RCSfile: basetype.h,v $-- $Author: atna $-- $Date: 2002/11/25 10:48:15 $-- $Revision: 1.1 $--------------------------------------------------------------------------------*/#ifndef BASETYPE_H#define BASETYPE_H#include <stddef.h>typedef unsigned char u8; /* Unsigned 8 bit char */typedef signed char i8; /* Signed 8 bit char, 2's complement */typedef unsigned short u16; /* Unsigned 16 bit short */typedef signed short i16; /* Signed 16 short, 2's complement */typedef unsigned int u32; /* Unsigned 32 bit integer */typedef signed int i32; /* Signed 32 bit integer, 2's complement */#endif /* #ifndef BASETYPE_H */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?