Blame include/vms/eiha.h

Packit bbfece
/* Alpha VMS external format of Extended Image Activation.
Packit bbfece
Packit bbfece
   Copyright (C) 2010-2018 Free Software Foundation, Inc.
Packit bbfece
   Written by Tristan Gingold <gingold@adacore.com>, AdaCore.
Packit bbfece
Packit bbfece
   This file is part of BFD, the Binary File Descriptor library.
Packit bbfece
Packit bbfece
   This program is free software; you can redistribute it and/or modify
Packit bbfece
   it under the terms of the GNU General Public License as published by
Packit bbfece
   the Free Software Foundation; either version 3 of the License, or
Packit bbfece
   (at your option) any later version.
Packit bbfece
Packit bbfece
   This program is distributed in the hope that it will be useful,
Packit bbfece
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit bbfece
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit bbfece
   GNU General Public License for more details.
Packit bbfece
Packit bbfece
   You should have received a copy of the GNU General Public License
Packit bbfece
   along with this program; if not, write to the Free Software
Packit bbfece
   Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
Packit bbfece
   MA 02110-1301, USA.  */
Packit bbfece
Packit bbfece
#ifndef _VMS_EIHA_H
Packit bbfece
#define _VMS_EIHA_H
Packit bbfece
Packit bbfece
struct vms_eiha
Packit bbfece
{
Packit bbfece
  /* Size of the struct.  */
Packit bbfece
  unsigned char size[4];
Packit bbfece
Packit bbfece
  unsigned char spare[4];
Packit bbfece
Packit bbfece
  /* First transfer address.  */
Packit bbfece
  unsigned char tfradr1[4];
Packit bbfece
  unsigned char tfradr1_h[4];
Packit bbfece
Packit bbfece
  /* Second.  */
Packit bbfece
  unsigned char tfradr2[4];
Packit bbfece
  unsigned char tfradr2_h[4];
Packit bbfece
Packit bbfece
  /* Third.  */
Packit bbfece
  unsigned char tfradr3[4];
Packit bbfece
  unsigned char tfradr3_h[4];
Packit bbfece
Packit bbfece
  /* Fourth (must be 0).  */
Packit bbfece
  unsigned char tfradr4[4];
Packit bbfece
  unsigned char tfradr4_h[4];
Packit bbfece
Packit bbfece
  /* Shared image initialization (only if EIHD__V_INISHR is set).  */
Packit bbfece
  unsigned char inishr[4];
Packit bbfece
  unsigned char inishr_h[4];
Packit bbfece
};
Packit bbfece
Packit bbfece
#endif /* _VMS_EIHA_H */