mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-01 10:51:12 +00:00
bfdefc0f02
Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
14 lines
272 B
C
14 lines
272 B
C
/** @file vbox_V5_1.c
|
|
* C file to include support for multiple versions of VirtualBox
|
|
* at runtime.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
/** The API Version */
|
|
#define VBOX_API_VERSION 5001000
|
|
/** Version specific prefix. */
|
|
#define NAME(name) vbox51##name
|
|
|
|
#include "vbox_tmpl.c"
|