2
0

qemu-fsdev.h 492 B

12345678910111213141516171819202122
  1. /*
  2. * 9p
  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
  15. #include "file-op-9p.h"
  16. int qemu_fsdev_add(QemuOpts *opts, Error **errp);
  17. FsDriverEntry *get_fsdev_fsentry(char *id);
  18. extern FileOperations local_ops;
  19. extern FileOperations synth_ops;
  20. extern FileOperations proxy_ops;
  21. #endif