fid.h

来自「fs_lib,arm9的fat文件系统」· C头文件 代码 · 共 34 行

H
34
字号
/*
 * @(#)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 + =
减小字号Ctrl + -
显示快捷键?