Revision c6329a2d0976661a466e02e29f50ce7b708cb8eb authored by Philippe Mathieu-Daudé on 10 October 2018, 21:53:53 UTC, committed by Michael S. Tsirkin on 05 November 2018, 18:24:02 UTC
Introduced in 48ebf2f90f8 and faf1e708d5b, these functions
were never used. Remove them.

Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
1 parent 0259e96
Raw File
vss-win32.h
/*
 * QEMU Guest Agent VSS utility declarations
 *
 * Copyright Hitachi Data Systems Corp. 2013
 *
 * Authors:
 *  Tomoki Sekiyama   <tomoki.sekiyama@hds.com>
 *
 * This work is licensed under the terms of the GNU GPL, version 2 or later.
 * See the COPYING file in the top-level directory.
 */

#ifndef VSS_WIN32_H
#define VSS_WIN32_H

#include "qga/vss-win32/vss-handles.h"

bool vss_init(bool init_requester);
void vss_deinit(bool deinit_requester);
bool vss_initialized(void);

int ga_install_vss_provider(void);
void ga_uninstall_vss_provider(void);

void qga_vss_fsfreeze(int *nr_volume, bool freeze,
                      strList *mountpints, Error **errp);

#endif
back to top