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

📄 fid.h

📁 fs_lib,arm9的fat文件系统
💻 H
字号:
/*
 * @(#)fid.h
 * @date 2005/12/25
 * @version 1.0
 * @author Zhou Shangpin.
 * Copyright 2005 Anyka corporation, Inc. All rights reserved.
 * ANYKA PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
 */

#ifndef		_FID_H_
#define		_FID_H_
#include	"object.h"
#include	"mem_api.h"

struct FidData
{
	T_U32 FileId;	//file id, it's first cluster of file in FAT file system.
	T_U32 fdt;		//the file sequence number in parent folder.
};

struct FidObj
{
	T_OBJECT obj;
	struct FidData data;
};

typedef struct FidObj T_FID;
typedef struct FidObj* T_PFID;

T_PFID Fid_Initial(T_VOID);
T_VOID Fid_Destroy(T_PFID obj);

#endif

⌨️ 快捷键说明

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