1*0c9b70d5SMax Reitz /* 2*0c9b70d5SMax Reitz * Present a block device as a raw image through FUSE 3*0c9b70d5SMax Reitz * 4*0c9b70d5SMax Reitz * Copyright (c) 2020 Max Reitz <mreitz@redhat.com> 5*0c9b70d5SMax Reitz * 6*0c9b70d5SMax Reitz * This program is free software; you can redistribute it and/or modify 7*0c9b70d5SMax Reitz * it under the terms of the GNU General Public License as published by 8*0c9b70d5SMax Reitz * the Free Software Foundation; under version 2 or later of the License. 9*0c9b70d5SMax Reitz * 10*0c9b70d5SMax Reitz * This program is distributed in the hope that it will be useful, 11*0c9b70d5SMax Reitz * but WITHOUT ANY WARRANTY; without even the implied warranty of 12*0c9b70d5SMax Reitz * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13*0c9b70d5SMax Reitz * GNU General Public License for more details. 14*0c9b70d5SMax Reitz * 15*0c9b70d5SMax Reitz * You should have received a copy of the GNU General Public License 16*0c9b70d5SMax Reitz * along with this program; if not, see <http://www.gnu.org/licenses/>. 17*0c9b70d5SMax Reitz */ 18*0c9b70d5SMax Reitz 19*0c9b70d5SMax Reitz #ifndef BLOCK_FUSE_H 20*0c9b70d5SMax Reitz #define BLOCK_FUSE_H 21*0c9b70d5SMax Reitz 22*0c9b70d5SMax Reitz #ifdef CONFIG_FUSE 23*0c9b70d5SMax Reitz 24*0c9b70d5SMax Reitz #include "block/export.h" 25*0c9b70d5SMax Reitz 26*0c9b70d5SMax Reitz extern const BlockExportDriver blk_exp_fuse; 27*0c9b70d5SMax Reitz 28*0c9b70d5SMax Reitz #endif /* CONFIG_FUSE */ 29*0c9b70d5SMax Reitz 30*0c9b70d5SMax Reitz #endif 31