1 //////////////////////////////////////////////////////////////////// 2 // Copyright (C) Alexander Telyatnikov, Ivan Keliukh, Yegor Anchishkin, SKIF Software, 1999-2013. Kiev, Ukraine 3 // All rights reserved 4 // This file was released under the GPLv2 on June 2015. 5 //////////////////////////////////////////////////////////////////// 6 7 #ifndef _PLATFORM_SPECIFIC_H_ 8 #define _PLATFORM_SPECIFIC_H_ 9 10 typedef char int8; 11 typedef short int16; 12 typedef long int32; 13 typedef long long int64; 14 15 typedef unsigned char uint8; 16 typedef unsigned short uint16; 17 typedef unsigned long uint32; 18 typedef unsigned long long uint64; 19 20 typedef uint32 lba_t; 21 22 #endif // _PLATFORM_SPECIFIC_H_ 23