forked from mirror/qemu
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
463 B
C
21 lines
463 B
C
/*
|
|
* Export QEMU block device via VDUSE
|
|
*
|
|
* Copyright (C) 2022 Bytedance Inc. and/or its affiliates. All rights reserved.
|
|
*
|
|
* Author:
|
|
* Xie Yongji <xieyongji@bytedance.com>
|
|
*
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or
|
|
* later. See the COPYING file in the top-level directory.
|
|
*/
|
|
|
|
#ifndef VDUSE_BLK_H
|
|
#define VDUSE_BLK_H
|
|
|
|
#include "block/export.h"
|
|
|
|
extern const BlockExportDriver blk_exp_vduse_blk;
|
|
|
|
#endif /* VDUSE_BLK_H */
|