]>
Commit | Line | Data |
---|---|---|
bc62fa03 MR |
1 | /* |
2 | * QEMU Guest Agent helpers for win32 service management | |
3 | * | |
4 | * Copyright IBM Corp. 2012 | |
5 | * | |
6 | * Authors: | |
7 | * Gal Hammer <[email protected]> | |
8 | * Michael Roth <[email protected]> | |
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 | */ | |
121d0712 MA |
13 | |
14 | #ifndef QGA_SERVICE_WIN32_H | |
15 | #define QGA_SERVICE_WIN32_H | |
bc62fa03 MR |
16 | |
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 | ||
b70d6afe BA |
23 | static const GUID GUID_VIOSERIAL_PORT = { 0x6fde7521, 0x1b65, 0x48ae, |
24 | { 0xb6, 0x28, 0x80, 0xbe, 0x62, 0x1, 0x60, 0x26 } }; | |
25 | ||
bc62fa03 MR |
26 | typedef struct GAService { |
27 | SERVICE_STATUS status; | |
28 | SERVICE_STATUS_HANDLE status_handle; | |
b70d6afe | 29 | HDEVNOTIFY device_notification_handle; |
bc62fa03 MR |
30 | } GAService; |
31 | ||
a839ee77 LE |
32 | int ga_install_service(const char *path, const char *logfile, |
33 | const char *state_dir); | |
bc62fa03 MR |
34 | int ga_uninstall_service(void); |
35 | ||
36 | #endif |