file.h
来自「ST5518机顶盒系统文件系统源代码!绝对超值!」· C头文件 代码 · 共 38 行
H
38 行
/******************************************************************************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 + =
减小字号Ctrl + -
显示快捷键?