HP85 GPIB Disk Emulator
1.0
HP85GPIBDiskEmulator
|
Go to the documentation of this file.
23 #define FF_DEFINED 86606
31 #if FF_DEFINED != FFCONF_DEF
32 #error Wrong configuration file (ffconf.h).
41 typedef unsigned __int64 QWORD;
42 #elif (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) || defined(__cplusplus)
45 typedef unsigned int UINT;
46 typedef unsigned char BYTE;
47 typedef uint16_t
WORD;
48 typedef uint32_t
DWORD;
49 typedef uint64_t QWORD;
54 typedef unsigned char BYTE;
55 typedef unsigned short WORD;
63 #if FF_MULTI_PARTITION
68 extern PARTITION VolToPart[];
72 #ifndef FF_VOLUME_STRS
84 #if FF_USE_LFN && FF_LFN_UNICODE == 1
87 #define _TEXT(x) L ## x
88 #elif FF_USE_LFN && FF_LFN_UNICODE == 2
91 #define _TEXT(x) u8 ## x
92 #elif FF_USE_LFN && FF_LFN_UNICODE == 3
95 #define _TEXT(x) U ## x
96 #elif FF_USE_LFN && (FF_LFN_UNICODE < 0 || FF_LFN_UNICODE > 3)
97 #error Wrong FF_LFN_UNICODE setting
112 #error exFAT feature wants C99 or later
122 #error exFAT needs to be enabled when enable 64-bit LBA
141 #if FF_MAX_SS != FF_MIN_SS
339 #define f_eof(fp) ((int)((fp)->fptr == (fp)->obj.objsize))
340 #define f_error(fp) ((fp)->err)
341 #define f_tell(fp) ((fp)->fptr)
342 #define f_size(fp) ((fp)->obj.objsize)
343 #define f_rewind(fp) f_lseek((fp), 0)
344 #define f_rewinddir(dp) f_readdir((dp), 0)
345 #define f_rmdir(path) f_unlink(path)
346 #define f_unmount(path) f_mount(0, path, 0)
359 #if !FF_FS_READONLY && !FF_FS_NORTC
391 #define FA_WRITE 0x02
392 #define FA_OPEN_EXISTING 0x00
393 #define FA_CREATE_NEW 0x04
394 #define FA_CREATE_ALWAYS 0x08
395 #define FA_OPEN_ALWAYS 0x10
396 #define FA_OPEN_APPEND 0x30
399 #define CREATE_LINKMAP ((FSIZE_t)0 - 1)
403 #define FM_FAT32 0x02
404 #define FM_EXFAT 0x04
FRESULT f_lseek(FIL *fp, FSIZE_t ofs)
FRESULT f_getlabel(const TCHAR *path, TCHAR *label, DWORD *vsn)
FRESULT f_chdir(const TCHAR *path)
FRESULT f_unlink(const TCHAR *path)
FRESULT f_chmod(const TCHAR *path, BYTE attr, BYTE mask)
DWORD ff_wtoupper(DWORD uni)
FRESULT f_chdrive(const TCHAR *path)
int f_puts(const TCHAR *str, FIL *cp)
FRESULT f_closedir(DIR *dp)
FRESULT f_expand(FIL *fp, FSIZE_t fsz, BYTE opt)
FRESULT f_stat(const TCHAR *path, FILINFO *fno)
WCHAR ff_oem2uni(WCHAR oem, WORD cp)
FRESULT f_mount(FATFS *fs, const TCHAR *path, BYTE opt)
DWORD get_fattime(void)
Read time and convert to FAT32 time.
FRESULT f_mkfs(const TCHAR *path, const MKFS_PARM *opt, void *work, UINT len)
FRESULT f_setlabel(const TCHAR *label)
FRESULT f_mkdir(const TCHAR *path)
FRESULT f_readdir(DIR *dp, FILINFO *fno)
FRESULT f_read(FIL *fp, void *buff, UINT btr, UINT *br)
FRESULT f_getfree(const TCHAR *path, DWORD *nclst, FATFS **fatfs)
FRESULT f_truncate(FIL *fp)
FRESULT f_utime(const TCHAR *path, const FILINFO *fno)
int f_printf(FIL *fp, const TCHAR *str,...)
TCHAR * f_gets(TCHAR *buff, int len, FIL *fp)
FRESULT f_forward(FIL *fp, UINT(*func)(const BYTE *, UINT), UINT btf, UINT *bf)
FRESULT f_write(FIL *fp, const void *buff, UINT btw, UINT *bw)
FRESULT f_findnext(DIR *dp, FILINFO *fno)
FRESULT f_rename(const TCHAR *path_old, const TCHAR *path_new)
FRESULT f_getcwd(TCHAR *buff, UINT len)
FRESULT f_opendir(DIR *dp, const TCHAR *path)
FRESULT f_open(FIL *fp, const TCHAR *path, BYTE mode)
WCHAR ff_uni2oem(DWORD uni, WORD cp)
void * ff_memalloc(UINT msize)
int f_putc(TCHAR c, FIL *fp)
FRESULT f_findfirst(DIR *dp, FILINFO *fno, const TCHAR *path, const TCHAR *pattern)
void ff_memfree(void *mblock)
FRESULT f_fdisk(BYTE pdrv, const LBA_t ptbl[], void *work)