/*-------------------------------------------------------------------------------- ---- 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 */