📄 filesys.h
字号:
/******************************************************************************
*
* (c) Freescale Inc. 2004 All rights reserved
*
* File Name : FileSys.h
* Description :
*
* Version : 1.0
* Date : Mar/05/2004
*
*
******************************************************************************/
#ifndef __FILE_SYS_H__
#define __FILE_SYS_H__
typedef struct TFileEntry
{
unsigned char hash; /* hash value for this entry file name */
const unsigned char* file_start_address;
unsigned short file_length;
} TFileEntry;
extern const TFileEntry FAT [];
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -