hfatfind.h

来自「HaiBIOS 是为我的S3C2410开发板写的一个启动程序。 C盘是RAMD」· C头文件 代码 · 共 35 行

H
35
字号
//---------------------------------------------------------------------------------
// Copyright jinhailiao 2008-2010
// E-mail:   jinhailiao@163.com
// Project:			HFAT16/32
// File:			hfatfind.h
// Description:		
//-------------------------------------------------------------
// Reversion Histroy:
//-------------------------------------------------------------
// Version		date		operations				by who
// 1.0.0		2008-06-26  create                  Kingsea
//---------------------------------------------------------------------------------
#ifndef __HFATFIND_H__
#define __HFATFIND_H__

#include "hfstype.h"
#include "hfileapi.h"

#define FINDINFO_FILEFILTER_MAX		32

typedef struct _tagFindInfo
{
	int dev;
	S_WORD DentNum;
	S_DWORD SenNum;
	S_BYTE FileFilter[FINDINFO_FILEFILTER_MAX];
}
_S_FINEINFO, *_SP_FINEINFO;

long _hai_findfirstOnFat(S_BYTE disk, S_BYTE *filespec, struct finddata *fileinfo);
int  _hai_findnextOnFat(long handle, struct finddata *fileinfo);


#endif //__HFATFIND_H__

⌨️ 快捷键说明

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