My fork of the FATFileSystem (working)

Fork of FATFileSystem by -deleted-

Committer:
s_moriya
Date:
Tue Jan 08 10:53:42 2013 +0000
Revision:
5:ecf9ff7e4ef2
Parent:
0:97df4125f18d
1

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mbed_unsupported 0:97df4125f18d 1 /*-------------------------------------------*/
mbed_unsupported 0:97df4125f18d 2 /* Integer type definitions for FatFs module */
mbed_unsupported 0:97df4125f18d 3 /*-------------------------------------------*/
mbed_unsupported 0:97df4125f18d 4
mbed_unsupported 0:97df4125f18d 5 #ifndef _INTEGER
mbed_unsupported 0:97df4125f18d 6
mbed_unsupported 0:97df4125f18d 7 /* These types must be 16-bit, 32-bit or larger integer */
s_moriya 5:ecf9ff7e4ef2 8 typedef int INT;
s_moriya 5:ecf9ff7e4ef2 9 typedef unsigned int UINT;
mbed_unsupported 0:97df4125f18d 10
mbed_unsupported 0:97df4125f18d 11 /* These types must be 8-bit integer */
s_moriya 5:ecf9ff7e4ef2 12 typedef signed char CHAR;
s_moriya 5:ecf9ff7e4ef2 13 typedef unsigned char UCHAR;
s_moriya 5:ecf9ff7e4ef2 14 typedef unsigned char BYTE;
mbed_unsupported 0:97df4125f18d 15
mbed_unsupported 0:97df4125f18d 16 /* These types must be 16-bit integer */
s_moriya 5:ecf9ff7e4ef2 17 typedef short SHORT;
s_moriya 5:ecf9ff7e4ef2 18 typedef unsigned short USHORT;
s_moriya 5:ecf9ff7e4ef2 19 typedef unsigned short WORD;
mbed_unsupported 0:97df4125f18d 20
mbed_unsupported 0:97df4125f18d 21 /* These types must be 32-bit integer */
s_moriya 5:ecf9ff7e4ef2 22 typedef long LONG;
s_moriya 5:ecf9ff7e4ef2 23 typedef unsigned long ULONG;
s_moriya 5:ecf9ff7e4ef2 24 typedef unsigned long DWORD;
mbed_unsupported 0:97df4125f18d 25
mbed_unsupported 0:97df4125f18d 26 /* Boolean type */
mbed_unsupported 0:97df4125f18d 27 typedef enum { FALSE = 0, TRUE } BOOL;
mbed_unsupported 0:97df4125f18d 28
mbed_unsupported 0:97df4125f18d 29 #define _INTEGER
mbed_unsupported 0:97df4125f18d 30 #endif