2 * QEMU Guest Agent VSS debug declarations
4 * Copyright (C) 2023 Red Hat Inc
7 * Konstantin Kostiuk <kkostiuk@redhat.com>
9 * This work is licensed under the terms of the GNU GPL, version 2 or later.
10 * See the COPYING file in the top-level directory.
13 #include "qemu/osdep.h"
14 #include <vss-handles.h>
19 void qga_debug_internal(const char *funcname
, const char *fmt
, ...) G_GNUC_PRINTF(2, 3);
21 #define qga_debug(fmt, ...) qga_debug_internal(__func__, fmt, ## __VA_ARGS__)
22 #define qga_debug_begin qga_debug("begin")
23 #define qga_debug_end qga_debug("end")