- Changed heading character of configuration keywords "_" to "FF_". - Removed ASCII-only configuration, FF_CODE_PAGE = 1. Use FF_CODE_PAGE = 437 instead. - Added f_setcp(), run-time code page configuration. (FF_CODE_PAGE = 0) - Improved cluster allocation time on stretch a deep buried cluster chain. - Improved processing time of f_mkdir() with large cluster size by using FF_USE_LFN = 3. - Improved NoFatChain flag of the fragmented file to be set after it is truncated and got contiguous. - Fixed archive attribute is left not set when a file on the exFAT volume is renamed. (appeared at R0.12) - Fixed exFAT FAT entry can be collapsed when write or lseek operation to the existing file is done. (appeared at R0.12c) - Fixed creating a file can fail when a new cluster allocation to the exFAT directory occures. (appeared at R0.12c)
		
			
				
	
	
		
			39 lines
		
	
	
		
			815 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			815 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /*-------------------------------------------*/
 | |
| /* Integer type definitions for FatFs module */
 | |
| /*-------------------------------------------*/
 | |
| 
 | |
| #ifndef FF_INTEGER
 | |
| #define FF_INTEGER
 | |
| 
 | |
| #ifdef _WIN32	/* FatFs development platform */
 | |
| 
 | |
| #include <windows.h>
 | |
| #include <tchar.h>
 | |
| typedef unsigned __int64 QWORD;
 | |
| 
 | |
| 
 | |
| #else			/* Embedded platform */
 | |
| 
 | |
| /* These types MUST be 16-bit or 32-bit */
 | |
| typedef int				INT;
 | |
| typedef unsigned int	UINT;
 | |
| 
 | |
| /* 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 32-bit */
 | |
| typedef long			LONG;
 | |
| typedef unsigned long	DWORD;
 | |
| 
 | |
| /* This type MUST be 64-bit (Remove this for ANSI C (C89) compatibility) */
 | |
| typedef unsigned long long QWORD;
 | |
| 
 | |
| #endif
 | |
| 
 | |
| #endif
 |