?? cellinfo.h
字號:
/**
* 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_ */
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -