|
00001 //--------------------------------------------------------------------------------------- 00002 // Copyright (c) 2001-2008 by PDFTron Systems Inc. All Rights Reserved. 00003 // Consult legal.txt regarding legal and license information. 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_ULong ULong; 00015 typedef TRN_UInt UInt; 00016 typedef TRN_UShort UShort; 00017 00018 typedef TRN_UInt32 UInt32; 00019 typedef TRN_UInt16 UInt16; 00020 typedef TRN_UInt8 UInt8; 00021 typedef TRN_Int32 Int32; 00022 typedef TRN_Int16 Int16; 00023 typedef TRN_Int8 Int8; 00024 00025 typedef TRN_Int64 Int64; 00026 typedef TRN_UInt64 UInt64; 00027 typedef TRN_Unicode Unicode; 00028 00029 }; // namespace pdftron 00030 00031 #endif 00032 00033 00034