diff options
author | hpa <hpa> | 2004-12-22 17:53:54 +0000 |
---|---|---|
committer | hpa <hpa> | 2004-12-22 17:53:54 +0000 |
commit | 5aa850e10e2a8463d49b438458c78d0c8c929b36 (patch) | |
tree | 20b25c414272ff34914bdd71f4e05d6907ded85e /syslinux.h | |
parent | 72d098b31e57e5ae81d9a4923608f12014c1d36f (diff) | |
download | syslinux-63e4b85bc9bd2a5f3d34f68422ec35ce5034e203.tar.gz syslinux-63e4b85bc9bd2a5f3d34f68422ec35ce5034e203.tar.xz syslinux-63e4b85bc9bd2a5f3d34f68422ec35ce5034e203.zip |
Add MBR-writing options to the Win32 installer. Probably should besyslinux-3.00-pre3
added to the DOS installer at some point, too.
Diffstat (limited to 'syslinux.h')
-rw-r--r-- | syslinux.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -19,11 +19,16 @@ /* The standard boot sector and ldlinux image */ extern unsigned char syslinux_bootsect[]; extern unsigned int syslinux_bootsect_len; +extern int syslinux_bootsect_mtime; extern unsigned char syslinux_ldlinux[]; extern unsigned int syslinux_ldlinux_len; extern int syslinux_ldlinux_mtime; +extern unsigned char syslinux_mbr[]; +extern unsigned int syslinux_mbr_len; +extern int syslinux_mbr_mtime; + /* This switches the boot sector to "stupid mode" */ void syslinux_make_stupid(void); |