From 42074a9d4d4cf0b7c2a3210de424f9b11268abb4 Mon Sep 17 00:00:00 2001 From: Michael Roth Date: Thu, 19 Jan 2012 22:19:27 -0600 Subject: 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. --- qga/guest-agent-core.h | 1 + 1 file changed, 1 insertion(+) (limited to 'qga/guest-agent-core.h') 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, ...); -- cgit v1.2.1