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

github.com/matt-wu/Ext3Fsd.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Wu <matt@ext2fsd.com>2011-01-30 15:27:46 +0300
committerMatt Wu <matt@ext2fsd.com>2011-01-30 15:27:46 +0300
commitabd6c07223688f426f95bdc39104b42ee3b7740f (patch)
tree31a81f325411309392b61f0c27572ac9848ba640 /Ext2Mgr/types.h
parent0bab5d4b813fde9600a1570b288c8bbacc1aec3e (diff)
Ext2Mgr 2.50
Diffstat (limited to 'Ext2Mgr/types.h')
-rw-r--r--Ext2Mgr/types.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/Ext2Mgr/types.h b/Ext2Mgr/types.h
new file mode 100644
index 0000000..e85458b
--- /dev/null
+++ b/Ext2Mgr/types.h
@@ -0,0 +1,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 */