blue craft / FATFileSystem

Fork of FATFileSystem by Chaiyaporn Boonyasathian

Committer:
cha45689
Date:
Fri Dec 02 19:37:14 2016 +0000
Revision:
0:9296bb2a98a8
ss

Who changed what in which revision?

UserRevisionLine numberNew contents of line
cha45689 0:9296bb2a98a8 1 /*-------------------------------------------*/
cha45689 0:9296bb2a98a8 2 /* Integer type definitions for FatFs module */
cha45689 0:9296bb2a98a8 3 /*-------------------------------------------*/
cha45689 0:9296bb2a98a8 4
cha45689 0:9296bb2a98a8 5 #ifndef _INTEGER
cha45689 0:9296bb2a98a8 6 #define _INTEGER
cha45689 0:9296bb2a98a8 7
cha45689 0:9296bb2a98a8 8 #ifdef _WIN32 /* FatFs development platform */
cha45689 0:9296bb2a98a8 9
cha45689 0:9296bb2a98a8 10 #include <windows.h>
cha45689 0:9296bb2a98a8 11 #include <tchar.h>
cha45689 0:9296bb2a98a8 12
cha45689 0:9296bb2a98a8 13 #else /* Embedded platform */
cha45689 0:9296bb2a98a8 14
cha45689 0:9296bb2a98a8 15 /* These types must be 16-bit, 32-bit or larger integer */
cha45689 0:9296bb2a98a8 16 typedef int INT;
cha45689 0:9296bb2a98a8 17 typedef unsigned int UINT;
cha45689 0:9296bb2a98a8 18
cha45689 0:9296bb2a98a8 19 /* These types must be 8-bit integer */
cha45689 0:9296bb2a98a8 20 typedef char CHAR;
cha45689 0:9296bb2a98a8 21 typedef unsigned char UCHAR;
cha45689 0:9296bb2a98a8 22 typedef unsigned char BYTE;
cha45689 0:9296bb2a98a8 23
cha45689 0:9296bb2a98a8 24 /* These types must be 16-bit integer */
cha45689 0:9296bb2a98a8 25 typedef short SHORT;
cha45689 0:9296bb2a98a8 26 typedef unsigned short USHORT;
cha45689 0:9296bb2a98a8 27 typedef unsigned short WORD;
cha45689 0:9296bb2a98a8 28 typedef unsigned short WCHAR;
cha45689 0:9296bb2a98a8 29
cha45689 0:9296bb2a98a8 30 /* These types must be 32-bit integer */
cha45689 0:9296bb2a98a8 31 typedef long LONG;
cha45689 0:9296bb2a98a8 32 typedef unsigned long ULONG;
cha45689 0:9296bb2a98a8 33 typedef unsigned long DWORD;
cha45689 0:9296bb2a98a8 34
cha45689 0:9296bb2a98a8 35 #endif
cha45689 0:9296bb2a98a8 36
cha45689 0:9296bb2a98a8 37 #endif
cha45689 0:9296bb2a98a8 38