blob: 298927dfa51f91f8632733302e6b6394cc5b0772 [file] [log] [blame]
Tomoki Sekiyama64c00312013-08-07 11:40:25 -04001/*
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
16#include "qapi/error.h"
17
18bool vss_init(bool init_requester);
19void vss_deinit(bool deinit_requester);
20bool vss_initialized(void);
21
Tomoki Sekiyamaf311f2c2013-08-07 11:40:32 -040022int ga_install_vss_provider(void);
23void ga_uninstall_vss_provider(void);
24
Markus Armbruster77dbc812014-05-02 13:26:30 +020025void qga_vss_fsfreeze(int *nr_volume, Error **errp, bool freeze);
Tomoki Sekiyama64c00312013-08-07 11:40:25 -040026
27#endif