aboutsummaryrefslogtreecommitdiffstats
path: root/os/various/fatfs_bindings/integer.h
diff options
context:
space:
mode:
authorFabien Poussin <fabien.poussin@gmail.com>2019-10-01 15:23:45 +0200
committerFabien Poussin <fabien.poussin@gmail.com>2019-10-02 10:47:02 +0200
commita0bd333cd2a6c4fabdd4daa98aa398f48ed9e9fc (patch)
tree326f10159757e7a3e04a2364f44b316667269c4d /os/various/fatfs_bindings/integer.h
parent8a0095ecd93309d011877f3cc8185a034d941b26 (diff)
downloadChibiOS-Contrib-a0bd333cd2a6c4fabdd4daa98aa398f48ed9e9fc.tar.gz
ChibiOS-Contrib-a0bd333cd2a6c4fabdd4daa98aa398f48ed9e9fc.tar.bz2
ChibiOS-Contrib-a0bd333cd2a6c4fabdd4daa98aa398f48ed9e9fc.zip
Jenkins to use 19.1.x
Diffstat (limited to 'os/various/fatfs_bindings/integer.h')
-rw-r--r--os/various/fatfs_bindings/integer.h38
1 files changed, 0 insertions, 38 deletions
diff --git a/os/various/fatfs_bindings/integer.h b/os/various/fatfs_bindings/integer.h
deleted file mode 100644
index d8e911c..0000000
--- a/os/various/fatfs_bindings/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 ANSI C (C89) compatibility) */
-typedef unsigned long long QWORD;
-
-#endif
-
-#endif