blob: 7b16d69b57905e080c53ee50038c526f929c0915 [file] [log] [blame]
Michael Rothbc62fa02012-01-21 16:42:27 -06001/*
2 * QEMU Guest Agent helpers for win32 service management
3 *
4 * Copyright IBM Corp. 2012
5 *
6 * Authors:
7 * Gal Hammer <ghammer@redhat.com>
8 * Michael Roth <mdroth@linux.vnet.ibm.com>
9 *
10 * This work is licensed under the terms of the GNU GPL, version 2 or later.
11 * See the COPYING file in the top-level directory.
12 */
Markus Armbruster121d0712016-06-29 10:12:57 +020013
14#ifndef QGA_SERVICE_WIN32_H
15#define QGA_SERVICE_WIN32_H
Michael Rothbc62fa02012-01-21 16:42:27 -060016
17#include <windows.h>
18
19#define QGA_SERVICE_DISPLAY_NAME "QEMU Guest Agent"
20#define QGA_SERVICE_NAME "qemu-ga"
21#define QGA_SERVICE_DESCRIPTION "Enables integration with QEMU machine emulator and virtualizer."
22
Bishara AbuHattoumb70d6af2018-10-07 14:02:23 +030023static const GUID GUID_VIOSERIAL_PORT = { 0x6fde7521, 0x1b65, 0x48ae,
24{ 0xb6, 0x28, 0x80, 0xbe, 0x62, 0x1, 0x60, 0x26 } };
25
Michael Rothbc62fa02012-01-21 16:42:27 -060026typedef struct GAService {
27 SERVICE_STATUS status;
28 SERVICE_STATUS_HANDLE status_handle;
Bishara AbuHattoumb70d6af2018-10-07 14:02:23 +030029 HDEVNOTIFY device_notification_handle;
Michael Rothbc62fa02012-01-21 16:42:27 -060030} GAService;
31
Laszlo Erseka839ee72013-05-18 06:31:53 +020032int ga_install_service(const char *path, const char *logfile,
33 const char *state_dir);
Michael Rothbc62fa02012-01-21 16:42:27 -060034int ga_uninstall_service(void);
35
36#endif