// Copyright (c) Team CharLS. // SPDX-License-Identifier: BSD-3-Clause #pragma once #include "annotations.h" #include "api_abi.h" #ifdef __cplusplus #include extern "C" { #else #include #endif #define CHARLS_VERSION_MAJOR 2 #define CHARLS_VERSION_MINOR 2 #define CHARLS_VERSION_PATCH 0 /// /// Returns the version of CharLS in the semver format "major.minor.patch" or "major.minor.patch-pre_release" /// CHARLS_API_IMPORT_EXPORT const char* CHARLS_API_CALLING_CONVENTION charls_get_version_string(CHARLS_C_VOID); /// /// Returns the version of CharLS in its numerical format. /// /// Reference to the major number, may be NULL/nullptr when this info is not needed. /// Reference to the minor number, may be NULL/nullptr when this info is not needed. /// Reference to the patch number, may be NULL/nullptr when this info is not needed. CHARLS_API_IMPORT_EXPORT void CHARLS_API_CALLING_CONVENTION charls_get_version_number(OUT_OPT_ int32_t* major, OUT_OPT_ int32_t* minor, OUT_OPT_ int32_t* patch); #ifdef __cplusplus } #endif