bootinfo.h
上传用户:xiejiait
上传日期:2007-01-06
资源大小:881k
文件大小:1k
源码类别:

SCSI/ASPI

开发平台:

MultiPlatform

  1. /*
  2.  * Header file bootinfo.h - mkisofs-defined boot information table
  3.  * useful for an El Torito-loaded disk image.
  4.    This program is free software; you can redistribute it and/or modify
  5.    it under the terms of the GNU General Public License as published by
  6.    the Free Software Foundation; either version 2, or (at your option)
  7.    any later version.
  8.    This program is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11.    GNU General Public License for more details.
  12.    You should have received a copy of the GNU General Public License
  13.    along with this program; if not, write to the Free Software
  14.    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  15. #ifndef _BOOTINFO_H
  16. #define _BOOTINFO_H
  17. struct mkisofs_boot_info {
  18. char bi_pvd  [ISODCL (  1,  4)]; /* LBA of PVD */
  19. char bi_file  [ISODCL (  5,  8)]; /* LBA of boot image */
  20. char bi_length  [ISODCL (  9, 12)]; /* Length of boot image */
  21. char bi_csum  [ISODCL ( 13, 16)]; /* Checksum of boot image */
  22. char bi_reserved [ISODCL ( 17, 56)]; /* Reserved */
  23. };
  24. #endif /* _BOOTINFO_H */