Tomoki Sekiyama | 64c0031 | 2013-08-07 11:40:25 -0400 | [diff] [blame] | 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 | |
| 13 | #ifndef VSS_WIN32_H |
| 14 | #define VSS_WIN32_H |
| 15 | |
Sameeh Jubran | 94d81ae | 2017-04-11 10:50:36 +0300 | [diff] [blame] | 16 | #include "qga/vss-win32/vss-handles.h" |
Tomoki Sekiyama | 64c0031 | 2013-08-07 11:40:25 -0400 | [diff] [blame] | 17 | |
| 18 | bool vss_init(bool init_requester); |
| 19 | void vss_deinit(bool deinit_requester); |
| 20 | bool vss_initialized(void); |
| 21 | |
Tomoki Sekiyama | f311f2c | 2013-08-07 11:40:32 -0400 | [diff] [blame] | 22 | int ga_install_vss_provider(void); |
| 23 | void ga_uninstall_vss_provider(void); |
| 24 | |
Chen Hanxiao | 0692b03 | 2018-08-31 14:22:50 +0800 | [diff] [blame] | 25 | void qga_vss_fsfreeze(int *nr_volume, bool freeze, |
| 26 | strList *mountpints, Error **errp); |
Tomoki Sekiyama | 64c0031 | 2013-08-07 11:40:25 -0400 | [diff] [blame] | 27 | |
| 28 | #endif |