summaryrefslogtreecommitdiff
path: root/fatfs/src/integer.h
diff options
context:
space:
mode:
authorLeo C2018-05-27 21:26:38 +0200
committerLeo C2018-05-27 21:26:38 +0200
commit289f6a146c0b2087607d8d8659531ea90142779a (patch)
tree37b0e9e341a4112582ccda4b8e22d4b2c4a6ee21 /fatfs/src/integer.h
parent70702af1370e44e32fb2c3c507e4759a187b4fe5 (diff)
downloadz180-stamp-289f6a146c0b2087607d8d8659531ea90142779a.zip
Import fatfs R0.13bfatfs-0.13b
Diffstat (limited to 'fatfs/src/integer.h')
-rw-r--r--fatfs/src/integer.h38
1 files changed, 0 insertions, 38 deletions
diff --git a/fatfs/src/integer.h b/fatfs/src/integer.h
deleted file mode 100644
index 4660ed6..0000000
--- a/fatfs/src/integer.h
+++ /dev/null
@@ -1,38 +0,0 @@
-/*-------------------------------------------*/
-/* Integer type definitions for FatFs module */
-/*-------------------------------------------*/
-
-#ifndef _FF_INTEGER
-#define _FF_INTEGER
-
-#ifdef _WIN32 /* FatFs development platform */
-
-#include <windows.h>
-#include <tchar.h>
-typedef unsigned __int64 QWORD;
-
-
-#else /* Embedded platform */
-
-/* These types MUST be 16-bit or 32-bit */
-typedef int INT;
-typedef unsigned int UINT;
-
-/* This type MUST be 8-bit */
-typedef unsigned char BYTE;
-
-/* These types MUST be 16-bit */
-typedef short SHORT;
-typedef unsigned short WORD;
-typedef unsigned short WCHAR;
-
-/* These types MUST be 32-bit */
-typedef long LONG;
-typedef unsigned long DWORD;
-
-/* This type MUST be 64-bit (Remove this for C89 compatibility) */
-typedef unsigned long long QWORD;
-
-#endif
-
-#endif