1 2 17 18 19 package org.apache.poi.poifs.storage; 20 21 import org.apache.poi.poifs.common.POIFSConstants; 22 import org.apache.poi.util.IntegerField; 23 import org.apache.poi.util.LittleEndian; 24 import org.apache.poi.util.LittleEndianConsts; 25 import org.apache.poi.util.LongField; 26 import org.apache.poi.util.ShortField; 27 28 33 34 public interface HeaderBlockConstants 35 { 36 public static final long _signature = 0xE11AB1A1E011CFD0L; 37 public static final int _bat_array_offset = 0x4c; 38 public static final int _max_bats_in_header = 39 (POIFSConstants.BIG_BLOCK_SIZE - _bat_array_offset) 40 / LittleEndianConsts.INT_SIZE; 41 42 public static final int _signature_offset = 0; 44 public static final int _bat_count_offset = 0x2C; 45 public static final int _property_start_offset = 0x30; 46 public static final int _sbat_start_offset = 0x3C; 47 public static final int _sbat_block_count_offset = 0x40; 48 public static final int _xbat_start_offset = 0x44; 49 public static final int _xbat_count_offset = 0x48; 50 } 52 | Popular Tags |