a8b991b52d
Leading underscores are ill-advised because such identifiers are reserved. Trailing underscores are merely ugly. Strip both. Our header guards commonly end in _H. Normalize the exceptions. Done with scripts/clean-header-guards.pl. Signed-off-by: Markus Armbruster <armbru@redhat.com> Message-Id: <20190315145123.28030-7-armbru@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> [Changes to slirp/ dropped, as we're about to spin it off]
15 lines
410 B
C
15 lines
410 B
C
#ifndef VSS_HANDLES_H
|
|
#define VSS_HANDLES_H
|
|
|
|
/* Constants for QGA VSS Provider */
|
|
|
|
#define QGA_PROVIDER_NAME "QEMU Guest Agent VSS Provider"
|
|
#define QGA_PROVIDER_LNAME L(QGA_PROVIDER_NAME)
|
|
#define QGA_PROVIDER_VERSION L(QEMU_VERSION)
|
|
|
|
#define EVENT_NAME_FROZEN "Global\\QGAVSSEvent-frozen"
|
|
#define EVENT_NAME_THAW "Global\\QGAVSSEvent-thaw"
|
|
#define EVENT_NAME_TIMEOUT "Global\\QGAVSSEvent-timeout"
|
|
|
|
#endif
|