diff options
author | Alon Levy <alevy@redhat.com> | 2011-07-19 16:05:04 +0300 |
---|---|---|
committer | Alon Levy <alevy@redhat.com> | 2011-07-20 16:00:17 +0300 |
commit | c04d60631e91ce9f61d417fb017d94d9a1e78dc1 (patch) | |
tree | cf653efb92ccf720e602617cb1d6f94a9a5ee143 /server/spice-server.syms | |
parent | f4ba39fe0f41e76b90fb2afe8ee08337e6981799 (diff) |
server: api: add spice_qxl_* calls based on QXLWorker contents
For each callback in QXLWorker, for example QXLWorker::update_area, add
a direct call named spice_qxl_update_area.
This will (a) remove the pointless indirection and (b) make shared
library versioning alot easier as we'll get new linker symbols which
we can tag with the version they appeared in the shared library.
Diffstat (limited to 'server/spice-server.syms')
-rw-r--r-- | server/spice-server.syms | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/server/spice-server.syms b/server/spice-server.syms index da7a4835..4e120ee9 100644 --- a/server/spice-server.syms +++ b/server/spice-server.syms @@ -58,6 +58,21 @@ SPICE_SERVER_0.8.2 { global: spice_server_set_sasl; spice_server_set_sasl_appname; + spice_qxl_wakeup; + spice_qxl_oom; + spice_qxl_start; + spice_qxl_stop; + spice_qxl_update_area; + spice_qxl_add_memslot; + spice_qxl_del_memslot; + spice_qxl_reset_memslots; + spice_qxl_destroy_surfaces; + spice_qxl_destroy_primary_surface; + spice_qxl_create_primary_surface; + spice_qxl_reset_image_cache; + spice_qxl_reset_cursor; + spice_qxl_destroy_surface_wait; + spice_qxl_loadvm_commands; } SPICE_SERVER_0.8.1; SPICE_SERVER_0.10.0 { |