mirror of
https://github.com/reactos/reactos.git
synced 2024-12-29 10:35:28 +00:00
22 lines
744 B
C
22 lines
744 B
C
////////////////////////////////////////////////////////////////////
|
|
// Copyright (C) Alexander Telyatnikov, Ivan Keliukh, Yegor Anchishkin, SKIF Software, 1999-2013. Kiev, Ukraine
|
|
// All rights reserved
|
|
// This file was released under the GPLv2 on June 2015.
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _PLATFORM_SPECIFIC_H_
|
|
#define _PLATFORM_SPECIFIC_H_
|
|
|
|
typedef char int8;
|
|
typedef short int16;
|
|
typedef long int32;
|
|
typedef long long int64;
|
|
|
|
typedef unsigned char uint8;
|
|
typedef unsigned short uint16;
|
|
typedef unsigned long uint32;
|
|
typedef unsigned long long uint64;
|
|
|
|
typedef uint32 lba_t;
|
|
|
|
#endif // _PLATFORM_SPECIFIC_H_
|