Main Page   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Namespace Members   Compound Members   Related Pages  

PajaTypes.h

00001 //-------------------------------------------------------------------------
00002 //
00003 // File:        ClassDescC.h
00004 // Desc:        General purpose types.
00005 // Author:      memon <memon@inside.org>
00006 //
00007 //-------------------------------------------------------------------------
00008 //  Copyright (c) 2000-2002 Moppi Productions. All Rights Reserved.
00009 //  This file is part of Moppi Demopaja SDK. For conditions of 
00010 //  distribution and use, see the accompanying license.txt file.
00011 //  http://moppi.inside.org/demopaja/
00012 //-------------------------------------------------------------------------
00013 
00014 #ifndef __DEMOPAJA_PAJATYPES_H__
00015 #define __DEMOPAJA_PAJATYPES_H__
00016 
00017 
00019 
00022 namespace PajaTypes {
00023 
00024     typedef char            int8;       
00025     typedef unsigned char   uint8;      
00026     typedef short           int16;      
00027     typedef unsigned short  uint16;     
00028     typedef int             int32;      
00029     typedef unsigned int    uint32;     
00030 
00031     typedef float           float32;    
00032     typedef double          float64;    
00033     typedef long double     float80;    
00034 
00035 };  // namespace PajaTypes
00036 
00037 #ifndef M_PI
00038 #define M_PI 3.1415926536               
00039 #endif
00040 
00041 #endif

Moppi Demopaja SDK Documentation -- Copyright © 2000-2002 Moppi Productions