⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 fs.het

📁 我今天开始上传5份TI、NXP、MTK的手机开发全套资料。希望对大家有很大的帮助
💻 HET
字号:
#ifndef FS_HET#define FS_HET/* This structure contains all volume configuration information like		*//*	- addresses of functions to call					*//*	- IO buffer configuration 						*//*------------------------------------------------------------------------------*/typedef struct st_fsVolStruct {	char *		p_VolName;	/* Pointer on volume name string */	void * 		p_FileList;	/* Pointer on queue of open files of volume */	void *		p_DirList;	/* Pointer on queue of open directories of volume */		void * 		p_IOBuffMngt;		/* IO buffer management configuration for the volume */	void * 		p_LayerCommunication;	/* Structure which compose the interlayer table 						      contains for every layer:							- its context pointer 							- the pointer on function/level table 							- the level of the layer							- the number of commands of the lower layer */	u16 		v_VolID;		/* ID of the volume */	u16		v_FsOffsetInFile;	/* Fm file header size */ 	u8		v_VolNameLength;	/* Length of volume name */	u8		v_FreezeCounter;	/* Number of freeze occurences for the volume */	MC_PCC_FILL_STRUCT2     } t_fsVolStruct ;#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -