summaryrefslogtreecommitdiff
path: root/qga/guest-agent-core.h
diff options
context:
space:
mode:
authorMichael Roth <mdroth@linux.vnet.ibm.com>2012-01-19 22:19:27 -0600
committerMichael Roth <mdroth@linux.vnet.ibm.com>2012-02-23 15:40:16 -0600
commit42074a9d4d4cf0b7c2a3210de424f9b11268abb4 (patch)
tree293663e51df0c4f8a72177cb8604cc9667315d25 /qga/guest-agent-core.h
parent125b310e1d62e3a1dc1e7758563e598957ca7ae4 (diff)
downloadqemu-42074a9d4d4cf0b7c2a3210de424f9b11268abb4.tar.gz
qemu-ga: separate out common commands from posix-specific ones
Many of the current RPC implementations are very much POSIX-specific and require complete re-writes for Windows. There are however a small set of core guest agent commands that are common to both, and other commands such as guest-file-* which *may* be portable. So we introduce commands.c for the latter, and will rename guest-agent-commands.c to commands-posix.c in a future commit. Windows implementations will go in commands-win32.c, eventually.
Diffstat (limited to 'qga/guest-agent-core.h')
-rw-r--r--qga/guest-agent-core.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/qga/guest-agent-core.h b/qga/guest-agent-core.h
index 6148d104d9..b5dfa5bbda 100644
--- a/qga/guest-agent-core.h
+++ b/qga/guest-agent-core.h
@@ -29,3 +29,4 @@ GACommandState *ga_command_state_new(void);
bool ga_logging_enabled(GAState *s);
void ga_disable_logging(GAState *s);
void ga_enable_logging(GAState *s);
+void slog(const gchar *fmt, ...);