ReactOS 0.4.15-dev-7942-gd23573b
bootinfo.h
Go to the documentation of this file.
1/* @(#)bootinfo.h 1.3 04/03/02 Copyright 1999, 2004 J. Schilling */
2/*
3 * Header file bootinfo.h - mkisofs-defined boot information table
4 * useful for an El Torito-loaded disk image.
5 *
6 * Copyright (c) 1999, 2004 J. Schilling
7 */
8/*
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2
11 * as published by the Free Software Foundation.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along with
19 * this program; see the file COPYING. If not, write to the Free Software
20 * Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21 */
22
23#ifndef _BOOTINFO_H
24#define _BOOTINFO_H
25
27 char bi_pvd [ISODCL(1, 4)]; /* LBA of PVD */
28 char bi_file [ISODCL(5, 8)]; /* LBA of boot image */
29 char bi_length [ISODCL(9, 12)]; /* Length of boot image */
30 char bi_csum [ISODCL(13, 16)]; /* Checksum of boot image */
31 char bi_reserved [ISODCL(17, 56)]; /* Reserved */
32};
33
34#endif /* _BOOTINFO_H */
#define ISODCL(from, to)
Definition: iso9660.h:33
char bi_csum[ISODCL(13, 16)]
Definition: bootinfo.h:30
char bi_pvd[ISODCL(1, 4)]
Definition: bootinfo.h:27
char bi_reserved[ISODCL(17, 56)]
Definition: bootinfo.h:31
char bi_length[ISODCL(9, 12)]
Definition: bootinfo.h:29
char bi_file[ISODCL(5, 8)]
Definition: bootinfo.h:28