mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-03-03 15:43:51 +00:00
14 lines
272 B
C
14 lines
272 B
C
|
/** @file vbox_V7_0.c
|
||
|
* C file to include support for multiple versions of VirtualBox
|
||
|
* at runtime.
|
||
|
*/
|
||
|
|
||
|
#include <config.h>
|
||
|
|
||
|
/** The API Version */
|
||
|
#define VBOX_API_VERSION 7000000
|
||
|
/** Version specific prefix. */
|
||
|
#define NAME(name) vbox70##name
|
||
|
|
||
|
#include "vbox_tmpl.c"
|