diff options
author | Chen Hanxiao <chenhanxiao@gmail.com> | 2018-08-31 14:22:50 +0800 |
---|---|---|
committer | Michael Roth <mdroth@linux.vnet.ibm.com> | 2018-10-30 16:48:49 -0500 |
commit | 0692b03ee135f6295168082199af55c6f289794d (patch) | |
tree | 25a3b4274ffd8453a955b1fbe5c4e238800556bb /qga/vss-win32/requester.h | |
parent | bad0227d3ac4f706673df9690b77840ed89dec40 (diff) | |
download | qemu-0692b03ee135f6295168082199af55c6f289794d.zip qemu-0692b03ee135f6295168082199af55c6f289794d.tar.gz qemu-0692b03ee135f6295168082199af55c6f289794d.tar.bz2 |
qga-win: add support for qmp_guest_fsfreeze_freeze_list
This patch add support for freeze specified fs.
The valid mountpoints list member are [1]:
The path of a mounted folder, for example, Y:\MountX\
A drive letter, for example, D:\
A volume GUID path of the form \\?\Volume{GUID}\,
where GUID identifies the volume
A UNC path that specifies a remote file share,
for example, \\Clusterx\Share1\
[1] https://docs.microsoft.com/en-us/windows/desktop/api/vsbackup/nf-vsbackup-ivssbackupcomponents-addtosnapshotset
Cc: Michael Roth <mdroth@linux.vnet.ibm.com>
Signed-off-by: Chen Hanxiao <chenhanxiao@gmail.com>
Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com>
Diffstat (limited to 'qga/vss-win32/requester.h')
-rw-r--r-- | qga/vss-win32/requester.h | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/qga/vss-win32/requester.h b/qga/vss-win32/requester.h index 2a39d73..5a8e8fa 100644 --- a/qga/vss-win32/requester.h +++ b/qga/vss-win32/requester.h @@ -34,9 +34,16 @@ typedef struct ErrorSet { STDAPI requester_init(void); STDAPI requester_deinit(void); -typedef void (*QGAVSSRequesterFunc)(int *, ErrorSet *); -void requester_freeze(int *num_vols, ErrorSet *errset); -void requester_thaw(int *num_vols, ErrorSet *errset); +typedef struct volList volList; + +struct volList { + volList *next; + char *value; +}; + +typedef void (*QGAVSSRequesterFunc)(int *, void *, ErrorSet *); +void requester_freeze(int *num_vols, void *volList, ErrorSet *errset); +void requester_thaw(int *num_vols, void *volList, ErrorSet *errset); #ifdef __cplusplus } |