📄 filestruct.h
字号:
# if(!defined FileStruct_h)
#define FileStruct_h
// Specific descriptor for HR file records in the DR file.
struct DRHeaderDescriptions
{
char szHdrFilePath[88+1];
char szFileName[32+1];
UINT nFileSize;
UINT nUserDef;
UINT nIntegKey;
};
// Format of the DR files managed by the DLS Installation Function.
struct DRFileFormat
{
UINT nFileLength;
UINT nFileVersion;
char szDescText[81];
char szPartNo[41];
USHORT nFlags;
USHORT nMediaType;
UINT nHeaderRecCnt;
UINT nHeaderSize;
DRHeaderDescriptions *cHeaderRecDesc;
UINT nPnHash;
UINT nFileCrc;
};
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -