summaryrefslogtreecommitdiff
path: root/lib/fatfs/integer.h
diff options
context:
space:
mode:
authorhathach <[email protected]>2022-11-19 13:44:07 +0700
committerhathach <[email protected]>2022-11-19 13:44:07 +0700
commitbb570e02d6a8b34fe00c90f5cd8ad736d990ed42 (patch)
tree64fae38d8095ad947eead76298aaf906d6db339d /lib/fatfs/integer.h
parenta6001fc8f2cfe0db2cf5ba410b49961781ce1803 (diff)
msc explorer ls work great
Diffstat (limited to 'lib/fatfs/integer.h')
-rw-r--r--lib/fatfs/integer.h36
1 files changed, 0 insertions, 36 deletions
diff --git a/lib/fatfs/integer.h b/lib/fatfs/integer.h
deleted file mode 100644
index f34f56d92..000000000
--- a/lib/fatfs/integer.h
+++ /dev/null
@@ -1,36 +0,0 @@
-/*-------------------------------------------*/
-/* Integer type definitions for FatFs module */
-/*-------------------------------------------*/
-
-#ifndef _INTEGER
-#define _INTEGER
-
-#ifdef _WIN32 /* FatFs development platform */
-
-#include <windows.h>
-#include <tchar.h>
-
-#else /* Embedded platform */
-
-/* These types must be 16-bit, 32-bit or larger integer */
-typedef int INT;
-typedef unsigned int UINT;
-
-/* These types must be 8-bit integer */
-typedef unsigned char UCHAR;
-typedef unsigned char BYTE;
-
-/* These types must be 16-bit integer */
-typedef short SHORT;
-typedef unsigned short USHORT;
-typedef unsigned short WORD;
-typedef unsigned short WCHAR;
-
-/* These types must be 32-bit integer */
-typedef long LONG;
-typedef unsigned long ULONG;
-typedef unsigned long DWORD;
-
-#endif
-
-#endif