xref: /openbmc/qemu/qga/guest-agent-core.h (revision 42074a9d)
113a286d5SMichael Roth /*
213a286d5SMichael Roth  * QEMU Guest Agent core declarations
313a286d5SMichael Roth  *
413a286d5SMichael Roth  * Copyright IBM Corp. 2011
513a286d5SMichael Roth  *
613a286d5SMichael Roth  * Authors:
713a286d5SMichael Roth  *  Adam Litke        <aglitke@linux.vnet.ibm.com>
813a286d5SMichael Roth  *  Michael Roth      <mdroth@linux.vnet.ibm.com>
913a286d5SMichael Roth  *
1013a286d5SMichael Roth  * This work is licensed under the terms of the GNU GPL, version 2 or later.
1113a286d5SMichael Roth  * See the COPYING file in the top-level directory.
1213a286d5SMichael Roth  */
1313a286d5SMichael Roth #include "qapi/qmp-core.h"
1413a286d5SMichael Roth #include "qemu-common.h"
1513a286d5SMichael Roth 
1613a286d5SMichael Roth #define QGA_VERSION "1.0"
17125b310eSMichael Roth #define QGA_READ_COUNT_DEFAULT 4096
1813a286d5SMichael Roth 
1948ff7a62SMichael Roth typedef struct GAState GAState;
2013a286d5SMichael Roth typedef struct GACommandState GACommandState;
2113a286d5SMichael Roth 
22e3d4d252SMichael Roth void ga_command_state_init(GAState *s, GACommandState *cs);
2313a286d5SMichael Roth void ga_command_state_add(GACommandState *cs,
2413a286d5SMichael Roth                           void (*init)(void),
2513a286d5SMichael Roth                           void (*cleanup)(void));
2613a286d5SMichael Roth void ga_command_state_init_all(GACommandState *cs);
2713a286d5SMichael Roth void ga_command_state_cleanup_all(GACommandState *cs);
2813a286d5SMichael Roth GACommandState *ga_command_state_new(void);
2948ff7a62SMichael Roth bool ga_logging_enabled(GAState *s);
3048ff7a62SMichael Roth void ga_disable_logging(GAState *s);
3148ff7a62SMichael Roth void ga_enable_logging(GAState *s);
32*42074a9dSMichael Roth void slog(const gchar *fmt, ...);
33