diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2015-04-27 20:00:57 +0100 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2015-04-27 20:00:57 +0100 |
commit | 3d27b09cf6f62ec61c1330d0a811811a91e7514d (patch) | |
tree | 5c67fa76257090a0d5cb00a607e9eeb382a3679c /include/ui/qemu-spice.h | |
parent | 3f9d69ba12da6f2874631f6e426a7ef148ba4c82 (diff) | |
parent | 700cd855def54c2a9f2b6a016dcebf75fe19c238 (diff) | |
download | hqemu-3d27b09cf6f62ec61c1330d0a811811a91e7514d.zip hqemu-3d27b09cf6f62ec61c1330d0a811811a91e7514d.tar.gz |
Merge remote-tracking branch 'remotes/spice/tags/pull-spice-20150427-1' into staging
spice: misc fixes.
# gpg: Signature made Mon Apr 27 12:03:16 2015 BST using RSA key ID D3E87138
# gpg: Good signature from "Gerd Hoffmann (work) <kraxel@redhat.com>"
# gpg: aka "Gerd Hoffmann <gerd@kraxel.org>"
# gpg: aka "Gerd Hoffmann (private) <kraxel@gmail.com>"
* remotes/spice/tags/pull-spice-20150427-1:
spice: learn to hide cursor
spice: set pointer position on hotspot
spice: fix mouse cursor position
spice: fix simple display on bigendian hosts
monitor: Make client_migrate_info synchronous
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'include/ui/qemu-spice.h')
-rw-r--r-- | include/ui/qemu-spice.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/include/ui/qemu-spice.h b/include/ui/qemu-spice.h index 25b94c7..42db3c1 100644 --- a/include/ui/qemu-spice.h +++ b/include/ui/qemu-spice.h @@ -42,8 +42,7 @@ int qemu_spice_set_passwd(const char *passwd, bool fail_if_connected, bool disconnect_if_connected); int qemu_spice_set_pw_expire(time_t expires); int qemu_spice_migrate_info(const char *hostname, int port, int tls_port, - const char *subject, - MonitorCompletion cb, void *opaque); + const char *subject); CharDriverState *qemu_chr_open_spice_vmc(const char *type); #if SPICE_SERVER_VERSION >= 0x000c02 @@ -70,10 +69,8 @@ static inline int qemu_spice_set_pw_expire(time_t expires) return -1; } static inline int qemu_spice_migrate_info(const char *h, int p, int t, - const char *s, - MonitorCompletion cb, void *opaque) + const char *s) { - cb(opaque, NULL); return -1; } |