Searched refs:TCHAR (Results 1 – 2 of 2) sorted by relevance
92 typedef WCHAR TCHAR; typedef96 typedef char TCHAR; typedef100 typedef DWORD TCHAR; typedef106 typedef char TCHAR; typedef240 const TCHAR* pat; /* Pointer to the name matching pattern */254 TCHAR altname[FF_SFN_BUF + 1];/* Altenative file name */255 TCHAR fname[FF_LFN_BUF + 1]; /* Primary file name */257 TCHAR fname[12 + 1]; /* File name */305 FRESULT f_open (FIL* fp, const TCHAR* path, BYTE mode); /* Open or create a file */312 FRESULT f_opendir (DIR* dp, const TCHAR* path); /* Open a directory */[all …]
733 const TCHAR** str /* Pointer to pointer to TCHAR string in configured encoding */ in tchar2uni()737 const TCHAR *p = *str; in tchar2uni()774 uc = (TCHAR)*p++; /* Get a unit */ in tchar2uni()803 TCHAR* buf, /* Output buffer */ in put_utf()827 *buf = (TCHAR)chr; in put_utf()832 *buf++ = (TCHAR)(0xC0 | (chr >> 6 & 0x1F)); in put_utf()833 *buf++ = (TCHAR)(0x80 | (chr >> 0 & 0x3F)); in put_utf()838 *buf++ = (TCHAR)(0xE0 | (chr >> 12 & 0x0F)); in put_utf()839 *buf++ = (TCHAR)(0x80 | (chr >> 6 & 0x3F)); in put_utf()840 *buf++ = (TCHAR)(0x80 | (chr >> 0 & 0x3F)); in put_utf()[all …]