aboutsummaryrefslogtreecommitdiffstats
path: root/3rdparty/petitfs-0.03/src/integer.h
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty/petitfs-0.03/src/integer.h')
-rw-r--r--3rdparty/petitfs-0.03/src/integer.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/3rdparty/petitfs-0.03/src/integer.h b/3rdparty/petitfs-0.03/src/integer.h
new file mode 100644
index 00000000..f254b2a0
--- /dev/null
+++ b/3rdparty/petitfs-0.03/src/integer.h
@@ -0,0 +1,33 @@
+/*-------------------------------------------*/
+/* Integer type definitions for FatFs module */
+/*-------------------------------------------*/
+
+#ifndef _FF_INTEGER
+#define _FF_INTEGER
+
+#ifdef _WIN32 /* FatFs development platform */
+
+#include <windows.h>
+#include <tchar.h>
+
+#else /* Embedded platform */
+
+/* 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 16 bit or 32 bit */
+typedef int INT;
+typedef unsigned int UINT;
+
+/* These types MUST be 32 bit */
+typedef long LONG;
+typedef unsigned long DWORD;
+
+#endif
+
+#endif