mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-10-31 18:33:11 +00:00
0eda09f490
Simply add the 5.2 SDK header to the existing unified framework. No other special handling is needed as there's no API break between existing 5.1 and the just added 5.2.
14 lines
272 B
C
14 lines
272 B
C
/** @file vbox_V5_2.c
|
|
* C file to include support for multiple versions of VirtualBox
|
|
* at runtime.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
/** The API Version */
|
|
#define VBOX_API_VERSION 5002000
|
|
/** Version specific prefix. */
|
|
#define NAME(name) vbox52##name
|
|
|
|
#include "vbox_tmpl.c"
|