Forked from mbed_offiial with fix for mbed OS 5
Fork of FATFileSystem by
ChaN/integer.h@8:d091b0d23605, 2016-08-16 (annotated)
- Committer:
- infinnovation
- Date:
- Tue Aug 16 21:59:32 2016 +0000
- Revision:
- 8:d091b0d23605
- Parent:
- 6:a5fcdbf92056
Change _name to getName() for mbed OS 5
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
emilmont | 1:46ce1e16c870 | 1 | /*-------------------------------------------*/ |
emilmont | 1:46ce1e16c870 | 2 | /* Integer type definitions for FatFs module */ |
emilmont | 1:46ce1e16c870 | 3 | /*-------------------------------------------*/ |
emilmont | 1:46ce1e16c870 | 4 | |
mbed_official | 5:b3b3370574cf | 5 | #ifndef _FF_INTEGER |
mbed_official | 5:b3b3370574cf | 6 | #define _FF_INTEGER |
emilmont | 1:46ce1e16c870 | 7 | |
mbed_official | 6:a5fcdbf92056 | 8 | #ifdef _WIN32 /* Development platform */ |
emilmont | 1:46ce1e16c870 | 9 | |
emilmont | 1:46ce1e16c870 | 10 | #include <windows.h> |
emilmont | 1:46ce1e16c870 | 11 | #include <tchar.h> |
emilmont | 1:46ce1e16c870 | 12 | |
mbed_official | 5:b3b3370574cf | 13 | #else /* Embedded platform */ |
emilmont | 1:46ce1e16c870 | 14 | |
mbed_official | 6:a5fcdbf92056 | 15 | /* This type MUST be 8-bit */ |
mbed_official | 5:b3b3370574cf | 16 | typedef unsigned char BYTE; |
emilmont | 1:46ce1e16c870 | 17 | |
mbed_official | 6:a5fcdbf92056 | 18 | /* These types MUST be 16-bit */ |
mbed_official | 5:b3b3370574cf | 19 | typedef short SHORT; |
mbed_official | 5:b3b3370574cf | 20 | typedef unsigned short WORD; |
mbed_official | 5:b3b3370574cf | 21 | typedef unsigned short WCHAR; |
emilmont | 1:46ce1e16c870 | 22 | |
mbed_official | 6:a5fcdbf92056 | 23 | /* These types MUST be 16-bit or 32-bit */ |
mbed_official | 5:b3b3370574cf | 24 | typedef int INT; |
mbed_official | 5:b3b3370574cf | 25 | typedef unsigned int UINT; |
mbed_official | 5:b3b3370574cf | 26 | |
mbed_official | 6:a5fcdbf92056 | 27 | /* These types MUST be 32-bit */ |
mbed_official | 5:b3b3370574cf | 28 | typedef long LONG; |
mbed_official | 5:b3b3370574cf | 29 | typedef unsigned long DWORD; |
emilmont | 1:46ce1e16c870 | 30 | |
emilmont | 1:46ce1e16c870 | 31 | #endif |
emilmont | 1:46ce1e16c870 | 32 | |
emilmont | 1:46ce1e16c870 | 33 | #endif |