21 lines
392 B
C
21 lines
392 B
C
|
/*
|
||
|
* QEMU Guest Agent VSS requester 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 INSTALL_H
|
||
|
#define INSTALL_H
|
||
|
|
||
|
#include <comadmin.h>
|
||
|
|
||
|
STDAPI StopService(void);
|
||
|
|
||
|
#endif
|