summaryrefslogtreecommitdiff
path: root/fatfs/source/integer.h
diff options
context:
space:
mode:
authorLeo C.2024-06-30 10:06:42 +0200
committerLeo C.2024-06-30 10:06:42 +0200
commit08749e4051ac14c6e9a2d85a37b3efdcedbb07f6 (patch)
treef4bd77512eb5e1c7679399c8d85667af42ae4f20 /fatfs/source/integer.h
parente8fda1c0a5056bbc41c0cdf70e95bb5a8678f277 (diff)
parent5630b9308323c3f3aaa09be8fe0f3aecaa826473 (diff)
downloadz180-stamp-08749e4051ac14c6e9a2d85a37b3efdcedbb07f6.zip
Merge branch 'chan-fatfs' into fatfs-integration
Diffstat (limited to 'fatfs/source/integer.h')
-rw-r--r--fatfs/source/integer.h36
1 files changed, 0 insertions, 36 deletions
diff --git a/fatfs/source/integer.h b/fatfs/source/integer.h
deleted file mode 100644
index f55a7c6..0000000
--- a/fatfs/source/integer.h
+++ /dev/null
@@ -1,36 +0,0 @@
-/*-------------------------------------------*/
-/* Integer type definitions for FatFs module */
-/*-------------------------------------------*/
-
-#ifndef FF_INTEGER
-#define FF_INTEGER
-
-#ifdef _WIN32 /* FatFs development platform */
-
-#include <windows.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 ANSI C (C89) compatibility) */
-typedef unsigned long long QWORD;
-
-#endif
-
-#endif