00001
00002
00003
00004
00005
00006 #ifndef H_CPPCommonBasicTypes
00007 #define H_CPPCommonBasicTypes
00008
00009 #include <C/Common/TRN_Types.h>
00010
00011 namespace pdftron {
00012
00013 typedef TRN_UChar UChar;
00014 typedef TRN_UInt32 UInt32;
00015 typedef TRN_UInt16 UInt16;
00016 typedef TRN_UInt8 UInt8;
00017 typedef TRN_Int32 Int32;
00018 typedef TRN_Int16 Int16;
00019 typedef TRN_Int8 Int8;
00020
00021 typedef TRN_Int64 Int64;
00022 typedef TRN_UInt64 UInt64;
00023 typedef TRN_Unicode Unicode;
00024
00025 }
00026
00027 #endif
00028
00029