tci: Fix wrong macro name for debug code
[qemu/wangdongxu.git] / qga / guest-agent-core.h
blobbbb8b9b125056655bf9db11a74c7972650f5aaa0
1 /*
2 * QEMU Guest Agent core declarations
4 * Copyright IBM Corp. 2011
6 * Authors:
7 * Adam Litke <aglitke@linux.vnet.ibm.com>
8 * Michael Roth <mdroth@linux.vnet.ibm.com>
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.
13 #include "qapi/qmp-core.h"
14 #include "qemu-common.h"
16 #define QGA_VERSION "1.0"
17 #define QGA_READ_COUNT_DEFAULT 4096
19 typedef struct GAState GAState;
20 typedef struct GACommandState GACommandState;
21 extern GAState *ga_state;
23 void ga_command_state_init(GAState *s, GACommandState *cs);
24 void ga_command_state_add(GACommandState *cs,
25 void (*init)(void),
26 void (*cleanup)(void));
27 void ga_command_state_init_all(GACommandState *cs);
28 void ga_command_state_cleanup_all(GACommandState *cs);
29 GACommandState *ga_command_state_new(void);
30 bool ga_logging_enabled(GAState *s);
31 void ga_disable_logging(GAState *s);
32 void ga_enable_logging(GAState *s);
33 void slog(const gchar *fmt, ...);
34 void ga_set_response_delimited(GAState *s);
35 bool ga_is_frozen(GAState *s);
36 void ga_set_frozen(GAState *s);
37 void ga_unset_frozen(GAState *s);