// XtratuM
// version: 0.1
//
// (c) 2004, Miguel Masmano <mimastel@doctor.upv.es>
// Released under the terms of GPL License v2

#ifndef _XtratuM_ELF_H_
#define _XtratuM_ELF_H_

struct elf_section_struct {
  unsigned char *image;
  unsigned long start_address;
  unsigned long size;
  unsigned long flags;
  unsigned long align;
};

struct elf_image_struct {
  struct elf_section_struct *elf_section;
  int nsections;
  unsigned long entry_point;
  unsigned int priority;
};

#endif
