mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-10-31 18:33:11 +00:00
622c5e4099
Changes in the API: - APIs related to the graphics adapter are no longer on the IMachine interface, but on a IGraphicsAdapter interface - The LaunchVMProcess method takes a list of env variables instead of a single variable containing a concatenated list. Since we only ever pass a single env variable, we can simply stuff it straight into a list. - The DHCP server start method no longer needs the network name Reviewed-by: Michal Privoznik <mprivozn@redhat.com> Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
14 lines
272 B
C
14 lines
272 B
C
/** @file vbox_V6_1.c
|
|
* C file to include support for multiple versions of VirtualBox
|
|
* at runtime.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
/** The API Version */
|
|
#define VBOX_API_VERSION 6001000
|
|
/** Version specific prefix. */
|
|
#define NAME(name) vbox61##name
|
|
|
|
#include "vbox_tmpl.c"
|