forked

Dependents:   Lab3

Fork of FatFileSystemCpp by Igor Skochinsky

Committer:
YongChingTee
Date:
Wed Mar 06 00:19:18 2013 +0000
Revision:
2:5cdf6d5c3b68
Parent:
0:6ceefe1c53e4
first commit

Who changed what in which revision?

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