diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2014-05-10 01:20:46 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2014-06-04 11:06:58 -0400 |
commit | 02f7676421af87f59e0b8e039fb7f13aaecd0b2b (patch) | |
tree | 634a221e7d1fc149d1955f2e5a2906119ed923b2 /src/util.h | |
parent | 9e735bbd1d45b41319bb27358c3d2e8079c9786a (diff) | |
download | seabios-02f7676421af87f59e0b8e039fb7f13aaecd0b2b.tar.gz |
cdemu: store internal cdemu fields in standard "el-torito" spec format.
Store the fields necessary to export the "el-torito" spec information
directly in an internal copy of the "el-torito" struct. This
simplifies the interface and obviates the need for an internal home
grown struct with the same info.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/util.h')
-rw-r--r-- | src/util.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -44,7 +44,7 @@ void disable_bootsplash(void); // cdrom.c extern u8 CDRom_locks[]; -extern struct cdemu_s CDEmu; +extern struct eltorito_s CDEmu; extern struct drive_s *cdemu_drive_gf; struct disk_op_s; int process_cdemu_op(struct disk_op_s *op); |