Loading...
Searching...
No Matches
Go to the documentation of this file.
32#ifndef LIBVLC_VERSION_H
33# define LIBVLC_VERSION_H 1
36# define LIBVLC_VERSION_MAJOR (4)
39# define LIBVLC_VERSION_MINOR (0)
42# define LIBVLC_VERSION_REVISION (0)
44# define LIBVLC_VERSION_EXTRA (0)
47# define LIBVLC_VERSION(maj,min,rev,extra) \
48 ((maj << 24) | (min << 16) | (rev << 8) | (extra))
51# define LIBVLC_VERSION_INT \
52 LIBVLC_VERSION(LIBVLC_VERSION_MAJOR, LIBVLC_VERSION_MINOR, \
53 LIBVLC_VERSION_REVISION, LIBVLC_VERSION_EXTRA)
57# define LIBVLC_ABI_VERSION_MAJOR (12)
60# define LIBVLC_ABI_VERSION_MINOR (0)
63# define LIBVLC_ABI_VERSION_MICRO (0)
75# define LIBVLC_ABI_VERSION_INT \
76 LIBVLC_VERSION(LIBVLC_VERSION_MAJOR, LIBVLC_ABI_VERSION_MAJOR, \
77 LIBVLC_ABI_VERSION_MINOR, LIBVLC_ABI_VERSION_MICRO )