Exemplo n.º 1
0
static void raw_eject(BlockDriverState *bs, bool eject_flag)
{
    bdrv_eject(bs->file->bs, eject_flag);
}
Exemplo n.º 2
0
static int raw_eject(BlockDriverState *bs, int eject_flag)
{
    return bdrv_eject(bs->file, eject_flag);
}
Exemplo n.º 3
0
Arquivo: raw.c Projeto: dorlaor/qemu
static void raw_eject(BlockDriverState *bs, int eject_flag)
{
    bdrv_eject(bs->file, eject_flag);
}