summaryrefslogtreecommitdiff
path: root/lib/fatfs/integer.h
diff options
context:
space:
mode:
authorHa Thach <[email protected]>2022-11-21 17:22:52 +0700
committerGitHub <[email protected]>2022-11-21 17:22:52 +0700
commit4a2e424103b0a2626a6cb464a350c68ae109cc7e (patch)
tree4a46f70fc34bc477b5c742b6f5a103322b7753f1 /lib/fatfs/integer.h
parent95fb11fcffd27a055561d2171aa99199982bb563 (diff)
parenta394273ed28bdbd9ed5cf4ba94a99204bdd841e9 (diff)
Merge pull request #1746 from hathach/host-msc-example
Add host msc explorer example
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