Welcome to mirror list, hosted at ThFree Co, Russian Federation.

types.h « Ext2Mgr - github.com/matt-wu/Ext3Fsd.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e85458b44467722b2dea081d4e5cb84101e37dd7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef _LINUX_TYPES_H
#define _LINUX_TYPES_H

#ifndef _MSC_VER
#error  _MSC_VER not defined
#endif


typedef unsigned __int8 __u8;
typedef signed __int8 __s8;

typedef signed   __int64 __s64;
typedef unsigned __int64 __u64;

typedef	signed   __int16	__s16;
typedef	unsigned __int16	__u16;

typedef	signed   __int32	__s32;
typedef	unsigned __int32	__u32;

typedef	signed   __int64	__s64;
typedef	unsigned __int64	__u64;

#endif /* LINUX_TYPES_H */