vboxguest_version.h 559 B

123456789101112131415161718
  1. /* SPDX-License-Identifier: (GPL-2.0 OR CDDL-1.0) */
  2. /*
  3. * VBox Guest additions version info, this is used by the host to determine
  4. * supported guest-addition features in some cases. So this will need to be
  5. * synced with vbox upstreams versioning scheme when we implement / port
  6. * new features from the upstream out-of-tree vboxguest driver.
  7. */
  8. #ifndef __VBOX_VERSION_H__
  9. #define __VBOX_VERSION_H__
  10. #define VBG_VERSION_MAJOR 6
  11. #define VBG_VERSION_MINOR 0
  12. #define VBG_VERSION_BUILD 0
  13. #define VBG_SVN_REV 127566
  14. #define VBG_VERSION_STRING "6.0.0"
  15. #endif