25 lines
729 B
C
25 lines
729 B
C
// Copyright 2025 Google LLC. This file and proprietary
|
|
// source code may only be used and distributed under the Widevine
|
|
// License Agreement.
|
|
|
|
#ifndef WIDEVINE_ODK_SRC_ODK_VERSIONS_H_
|
|
#define WIDEVINE_ODK_SRC_ODK_VERSIONS_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
#include "odk_structs.h"
|
|
|
|
/* Highest ODK minor version number by major version. */
|
|
#define ODK_V16_MINOR_VERSION 5
|
|
#define ODK_V17_MINOR_VERSION 8
|
|
#define ODK_V18_MINOR_VERSION 10
|
|
|
|
/* Whenever the next major version is released, this should be updated to the
|
|
* new major version. */
|
|
#if ODK_MAJOR_VERSION != 19
|
|
# error "ODK_MAJOR_VERSION has changed. Please update this file."
|
|
#endif
|
|
#define ODK_V19_MINOR_VERSION ODK_MINOR_VERSION
|
|
|
|
#endif // WIDEVINE_ODK_SRC_ODK_VERSIONS_H_
|