1 /* 2 * Export QEMU block device via VDUSE 3 * 4 * Copyright (C) 2022 Bytedance Inc. and/or its affiliates. All rights reserved. 5 * 6 * Author: 7 * Xie Yongji <xieyongji@bytedance.com> 8 * 9 * This work is licensed under the terms of the GNU GPL, version 2 or 10 * later. See the COPYING file in the top-level directory. 11 */ 12 13 #ifndef VDUSE_BLK_H 14 #define VDUSE_BLK_H 15 16 #include "block/export.h" 17 18 extern const BlockExportDriver blk_exp_vduse_blk; 19 20 #endif /* VDUSE_BLK_H */ 21