#ifndef TYPES_H_INCLUDED
#define TYPES_H_INCLUDED 1

#ifndef __SYMBIAN32__
typedef unsigned int	uint32;
typedef unsigned short	uint16;
typedef unsigned char	uint8;
#else
typedef unsigned long int	uint32;
typedef unsigned short int	uint16;
typedef unsigned char		uint8;
#endif // __SYMBIAN32__

#endif

