diff options
Diffstat (limited to 'sysemu.h')
-rw-r--r-- | sysemu.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -135,6 +135,7 @@ typedef struct DriveInfo { int bus; int unit; int used; + int drive_opt_idx; BlockInterfaceErrorAction onerror; char serial[21]; } DriveInfo; @@ -148,6 +149,8 @@ extern DriveInfo drives_table[MAX_DRIVES+1]; extern int drive_get_index(BlockInterfaceType type, int bus, int unit); extern int drive_get_max_bus(BlockInterfaceType type); +extern void drive_uninit(BlockDriverState *bdrv); +extern void drive_remove(int index); extern const char *drive_get_serial(BlockDriverState *bdrv); extern BlockInterfaceErrorAction drive_get_onerror(BlockDriverState *bdrv); |