Lines Matching refs:TCHAR

85 typedef WCHAR TCHAR;  typedef
89 typedef char TCHAR; typedef
93 typedef DWORD TCHAR; typedef
99 typedef char TCHAR; typedef
230 const TCHAR* pat; /* Pointer to the name matching pattern */
244 TCHAR altname[FF_SFN_BUF + 1];/* Altenative file name */
245 TCHAR fname[FF_LFN_BUF + 1]; /* Primary file name */
247 TCHAR fname[12 + 1]; /* File name */
283 FRESULT f_open (FIL* fp, const TCHAR* path, BYTE mode); /* Open or create a file */
290 FRESULT f_opendir (FF_DIR* dp, const TCHAR* path); /* Open a directory */
293 FRESULT f_findfirst (FF_DIR* dp, FILINFO* fno, const TCHAR* path, const TCHAR* pattern); /* Find fi…
295 FRESULT f_mkdir (const TCHAR* path); /* Create a sub directory */
296 FRESULT f_unlink (const TCHAR* path); /* Delete an existing file or directory */
297 FRESULT f_rename (const TCHAR* path_old, const TCHAR* path_new); /* Rename/Move a file or directory…
298 FRESULT f_stat (const TCHAR* path, FILINFO* fno); /* Get file status */
299 FRESULT f_chmod (const TCHAR* path, BYTE attr, BYTE mask); /* Change attribute of a file/dir */
300 FRESULT f_utime (const TCHAR* path, const FILINFO* fno); /* Change timestamp of a file/dir */
301 FRESULT f_chdir (const TCHAR* path); /* Change current directory */
302 FRESULT f_chdrive (const TCHAR* path); /* Change current drive */
303 FRESULT f_getcwd (TCHAR* buff, UINT len); /* Get current directory */
304 FRESULT f_getfree (const TCHAR* path, DWORD* nclst, FATFS** fatfs); /* Get number of free clusters …
305 FRESULT f_getlabel (const TCHAR* path, TCHAR* label, DWORD* vsn); /* Get volume label */
306 FRESULT f_setlabel (const TCHAR* label); /* Set volume label */
309 FRESULT f_mount (FATFS* fs, const TCHAR* path, BYTE opt); /* Mount/Unmount a logical drive */
310 FRESULT f_mkfs (const TCHAR* path, BYTE opt, DWORD au, void* work, UINT len); /* Create a FAT volum…
313 int f_putc (TCHAR c, FIL* fp); /* Put a character to the file */
314 int f_puts (const TCHAR* str, FIL* cp); /* Put a string to the file */
315 int f_printf (FIL* fp, const TCHAR* str, ...); /* Put a formatted string to the file */
316 TCHAR* f_gets (TCHAR* buff, int len, FIL* fp); /* Get a string from the file */