coff_lib.h

来自「dm642的相关驱动程序」· C头文件 代码 · 共 28 行

H
28
字号
#ifndef _COFFLIB_H
#define _COFFDEFS_H

#include "COFF_defs.h"


typedef struct
{
   UINT32   src;        /* section's byte offset in file */
   UINT32   dest;       /* destination address in DSP address space */
   UINT32   count;      /* transfer count in bytes */
} tSectionXferRecord;

#ifdef __cplusplus
extern "C" {
#endif

int                  COFF_ParseHeader(tCOFFMainHeader *pHeader);
int              COFF_OptionalHeaderExists(tCOFFMainHeader *pHeader);
tSectionXferRecord   COFF_ParseSectionHeader(tCOFFSectionHeader *pHeader);

#ifdef __cplusplus
}
#endif


#endif   /*#ifndef _COFFLIB_H */

⌨️ 快捷键说明

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