cellinfo.h

来自「AMD公司官方版FLASH文件系统。有详细说明文档和Windows仿真测试环境。」· C头文件 代码 · 共 27 行

H
27
字号
/**
 * CellInfo.h
 * Stores basic information about the cells such as
 *   the number of cells, the size of each, total size
 *   and the largest cell.
 *
 * Functions in this file do not read or write to the flash
 *   they only organize and store the data given to them.
 */

#ifndef _CELL_INFO_H_
#define _CELL_INFO_H_

#include "Ffs.h"

DMS_STATUS dms_CellInfoDefineCellList(DWORD *apdwCellSize, WORD awCellCount);
DMS_STATUS dms_CellInfoFinalize(void);
DMS_STATUS dms_CellInfoDefineCellCount(WORD awCellCount);
void dms_CellInfoDefineCellBlockCount(WORD awCellIndex, WORD awBlockCount);
DMS_STATUS dms_CellInfoCheckValidity(void);
WORD dms_CellInfoGetCount(void);
WORD dms_CellInfoGetBlockCount(WORD awCellIndex);
WORD dms_CellInfoGetTotalBlockCount(void);
WORD dms_CellInfoGetLargestCellBlockCount(void);

#endif /* _CELL_INFO_H_ */

⌨️ 快捷键说明

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