--- qemu/roms/seabios/src/disk.h 2018/04/24 17:36:48 1.1.1.1 +++ qemu/roms/seabios/src/disk.h 2018/04/24 17:52:10 1.1.1.2 @@ -230,7 +230,7 @@ struct drives_s { // block.c extern struct drives_s Drives; struct drive_s *getDrive(u8 exttype, u8 extdriveoffset); -struct drive_s *allocDrive(); +struct drive_s *allocDrive(void); void setup_translation(struct drive_s *drive_g); void map_floppy_drive(struct drive_s *drive_g); void map_hd_drive(struct drive_s *drive_g); @@ -238,27 +238,27 @@ void map_cd_drive(struct drive_s *drive_ void describe_drive(struct drive_s *drive_g); int process_op(struct disk_op_s *op); int send_disk_op(struct disk_op_s *op); -void drive_setup(); +void drive_setup(void); // floppy.c extern struct floppy_ext_dbt_s diskette_param_table2; -void floppy_setup(); +void floppy_setup(void); struct drive_s *addFloppy(int floppyid, int ftype, int driver); void describe_floppy(struct drive_s *drive_g); int find_floppy_type(u32 size); int process_floppy_op(struct disk_op_s *op); -void floppy_tick(); +void floppy_tick(void); // cdrom.c extern struct drive_s *cdemu_drive; int process_cdemu_op(struct disk_op_s *op); -void cdemu_setup(); +void cdemu_setup(void); void cdemu_134b(struct bregs *regs); int cdrom_boot(int cdid); // ramdisk.c void describe_ramdisk(struct drive_s *drive_g); -void ramdisk_setup(); +void ramdisk_setup(void); int process_ramdisk_op(struct disk_op_s *op); #endif // disk.h