filestruct.h

来自「我要下载源代码我要源代码我要下载代码我要下载源代码」· C头文件 代码 · 共 36 行

H
36
字号
# 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 + =
减小字号Ctrl + -
显示快捷键?