📄 file.h
字号:
/******************************************************************************File Name : file.hDescription: File handle definitions. Based on the original AVfs FileHandle_c class.******************************************************************************/#ifndef FILE_H#define FILE_H /* Includes ------------------------------------------------------------ */#include "avdevice.h"#include "dir.h" /* Exported Types ------------------------------------------------------ */ /* Exported Constants -------------------------------------------------- */#define MAX_OPEN_FILES (32) /* Max # of open files */ /* Exported Variables -------------------------------------------------- */ /* Exported Macros ----------------------------------------------------- */ /* Exported Function Prototypes ---------------------------------------- */void stavfs_InitFileTable (void);void stavfs_CloseAllFilesOnDevice (stavfs_Device_t *Device);int stavfs_CountOpenFilesOnDevice (stavfs_Device_t *Device);ST_ErrorCode_t stavfs_DeleteFileEntry (stavfs_Device_t * Device_p, stavfs_DirEntry_t *DirEntry_p);#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -