1a02191e04bc25c4935f804f2c080ae28663d096dBen Murdoch// Copyright 2014 PDFium Authors. All rights reserved.
28bcbed890bc3ce4d7a057a8f32cab53fa534672eTorne (Richard Coles)// Use of this source code is governed by a BSD-style license that can be
38bcbed890bc3ce4d7a057a8f32cab53fa534672eTorne (Richard Coles)// found in the LICENSE file.
48bcbed890bc3ce4d7a057a8f32cab53fa534672eTorne (Richard Coles)
5a02191e04bc25c4935f804f2c080ae28663d096dBen Murdoch// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
6e5d81f57cb97b3b6b7fccc9c5610d21eb81db09dBen Murdoch
78bcbed890bc3ce4d7a057a8f32cab53fa534672eTorne (Richard Coles)#ifndef COMMON_H
88bcbed890bc3ce4d7a057a8f32cab53fa534672eTorne (Richard Coles)#define COMMON_H
98bcbed890bc3ce4d7a057a8f32cab53fa534672eTorne (Richard Coles)typedef signed char TT_int8_t;
108bcbed890bc3ce4d7a057a8f32cab53fa534672eTorne (Richard Coles)typedef unsigned char TT_uint8_t;
115f1c94371a64b3196d4be9466099bb892df9b88eTorne (Richard Coles)typedef signed short TT_int16_t;
128bcbed890bc3ce4d7a057a8f32cab53fa534672eTorne (Richard Coles)typedef unsigned short TT_uint16_t;
138bcbed890bc3ce4d7a057a8f32cab53fa534672eTorne (Richard Coles)typedef FX_INT32 TT_int32_t;
141e9bf3e0803691d0a228da41fc608347b6db4340Torne (Richard Coles)typedef FX_DWORD TT_uint32_t;
158bcbed890bc3ce4d7a057a8f32cab53fa534672eTorne (Richard Coles)typedef FX_INT64 TT_int64_t;
168bcbed890bc3ce4d7a057a8f32cab53fa534672eTorne (Richard Coles)typedef FX_UINT64 TT_uint64_t;
178bcbed890bc3ce4d7a057a8f32cab53fa534672eTorne (Richard Coles)#endif
188bcbed890bc3ce4d7a057a8f32cab53fa534672eTorne (Richard Coles)