175fd0b74Schristos /* Alpha VMS external format of Extended Image section Change Protection. 275fd0b74Schristos 3*e992f068Schristos Copyright (C) 2010-2022 Free Software Foundation, Inc. 475fd0b74Schristos Written by Tristan Gingold <gingold@adacore.com>, AdaCore. 575fd0b74Schristos 675fd0b74Schristos This file is part of BFD, the Binary File Descriptor library. 775fd0b74Schristos 875fd0b74Schristos This program is free software; you can redistribute it and/or modify 975fd0b74Schristos it under the terms of the GNU General Public License as published by 1075fd0b74Schristos the Free Software Foundation; either version 3 of the License, or 1175fd0b74Schristos (at your option) any later version. 1275fd0b74Schristos 1375fd0b74Schristos This program is distributed in the hope that it will be useful, 1475fd0b74Schristos but WITHOUT ANY WARRANTY; without even the implied warranty of 1575fd0b74Schristos MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 1675fd0b74Schristos GNU General Public License for more details. 1775fd0b74Schristos 1875fd0b74Schristos You should have received a copy of the GNU General Public License 1975fd0b74Schristos along with this program; if not, write to the Free Software 2075fd0b74Schristos Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, 2175fd0b74Schristos MA 02110-1301, USA. */ 2275fd0b74Schristos 2375fd0b74Schristos #ifndef _VMS_EICP_H 2475fd0b74Schristos #define _VMS_EICP_H 2575fd0b74Schristos 2675fd0b74Schristos struct vms_eicp 2775fd0b74Schristos { 2875fd0b74Schristos /* Start of section. */ 2975fd0b74Schristos unsigned char baseva[8]; 3075fd0b74Schristos 3175fd0b74Schristos /* Size in bytes of the image section. */ 3275fd0b74Schristos unsigned char size[4]; 3375fd0b74Schristos 3475fd0b74Schristos /* New protections. */ 3575fd0b74Schristos unsigned char newprt[4]; 3675fd0b74Schristos }; 3775fd0b74Schristos 3875fd0b74Schristos #endif /* _VMS_EICP_H */ 39