1 /* 2 * Copyright (C) 2015-2020 Alibaba Group Holding Limited 3 */ 4 #ifndef __section_def_h__ 5 #define __section_def_h__ 6 7 #include "stdint.h" 8 9 #ifdef __cplusplus 10 extern "C" { 11 #endif 12 13 typedef struct { 14 uint16_t magic; 15 uint16_t version; 16 uint32_t crc; 17 uint32_t reserved0; 18 uint32_t reserved1; 19 } section_head_t; 20 21 #ifdef __cplusplus 22 } 23 #endif 24 25 #endif 26