]> git.proxmox.com Git - mirror_qemu.git/blame - fsdev/qemu-fsdev.h
Merge remote-tracking branch 'remotes/huth-gitlab/tags/pull-request-2020-09-16' into...
[mirror_qemu.git] / fsdev / qemu-fsdev.h
CommitLineData
74db920c 1/*
af8b38b0 2 * 9p
74db920c
GS
3 *
4 * Copyright IBM, Corp. 2010
5 *
6 * Authors:
7 * Gautham R Shenoy <ego@in.ibm.com>
8 *
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
11 *
12 */
13#ifndef QEMU_FSDEV_H
14#define QEMU_FSDEV_H
353ac78d 15#include "file-op-9p.h"
74db920c 16
b836723d 17int qemu_fsdev_add(QemuOpts *opts, Error **errp);
fbcbf101 18FsDriverEntry *get_fsdev_fsentry(char *id);
9f107513 19extern FileOperations local_ops;
9db221ae 20extern FileOperations synth_ops;
4c793dda 21extern FileOperations proxy_ops;
74db920c 22#endif