filesys.h
来自「用于以太网开发」· C头文件 代码 · 共 26 行
H
26 行
/******************************************************************************
*
* (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 + =
减小字号Ctrl + -
显示快捷键?