00001 #ifndef __J2K__PTypes_HPP__
00002 #define __J2K__PTypes_HPP__
00003
00004 typedef unsigned char uint8_t;
00005 typedef signed char int8_t;
00006
00007 typedef unsigned short uint16_t;
00008 typedef signed short int16_t;
00009
00010 typedef unsigned long uint32_t;
00011 typedef signed long int32_t;
00012
00013 typedef unsigned char* pstr_t;
00014 typedef unsigned char uchar_t;
00015
00016
00017
00018 typedef const unsigned char cuint8_t;
00019 typedef const signed char cint8_t;
00020
00021 typedef const unsigned short cuint16_t;
00022 typedef const signed short cint16_t;
00023
00024 typedef const unsigned long cuint32_t;
00025 typedef const signed long cint32_t;
00026
00027 typedef const unsigned const char* cpcstr_t;
00028 typedef const unsigned char cuchar_t;
00029
00030 typedef const unsigned int cuint_t;
00031
00032 #endif
00033
00034