vss-win32.h 673 B

12345678910111213141516171819202122232425262728
  1. /*
  2. * QEMU Guest Agent VSS utility declarations
  3. *
  4. * Copyright Hitachi Data Systems Corp. 2013
  5. *
  6. * Authors:
  7. * Tomoki Sekiyama <tomoki.sekiyama@hds.com>
  8. *
  9. * This work is licensed under the terms of the GNU GPL, version 2 or later.
  10. * See the COPYING file in the top-level directory.
  11. */
  12. #ifndef VSS_WIN32_H
  13. #define VSS_WIN32_H
  14. #include "qga/vss-win32/vss-handles.h"
  15. bool vss_init(bool init_requester);
  16. void vss_deinit(bool deinit_requester);
  17. bool vss_initialized(void);
  18. int ga_install_vss_provider(void);
  19. void ga_uninstall_vss_provider(void);
  20. void qga_vss_fsfreeze(int *nr_volume, bool freeze,
  21. strList *mountpints, Error **errp);
  22. #endif