1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
|
/*
* Copyright (c) Advanced Micro Devices, Inc. All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
#ifndef RAS_DECODE_VERSION_H
#define RAS_DECODE_VERSION_H
#ifdef __cplusplus
extern "C" {
#endif
/**
* @brief ACA Decoder Library Version Information
*
* This header defines version constants and functions for the ACA Decoder library.
* Version follows Semantic Versioning (SemVer) specification: MAJOR.MINOR.PATCH
*
* - MAJOR: Incremented for incompatible API changes
* - MINOR: Incremented for backward-compatible functionality additions
* - PATCH: Incremented for backward-compatible fixes
*/
/* Version Components */
#define RAS_DECODE_VERSION_MAJOR 2 /**< Major version number */
#define RAS_DECODE_VERSION_MINOR 0 /**< Minor version number */
#define RAS_DECODE_VERSION_PATCH 0 /**< Patch version number */
/* Helper macros for string concatenation */
#define RAS_DECODE_STRINGIFY(x) #x
#define RAS_DECODE_TOSTRING(x) RAS_DECODE_STRINGIFY(x)
/* Version String - dynamically constructed from components */
#define RAS_DECODE_VERSION_STRING \
RAS_DECODE_TOSTRING(RAS_DECODE_VERSION_MAJOR) \
"." RAS_DECODE_TOSTRING(RAS_DECODE_VERSION_MINOR) "." RAS_DECODE_TOSTRING( \
RAS_DECODE_VERSION_PATCH)
/**
* @brief Structure containing version information
*/
typedef struct {
int major; /**< Major version number */
int minor; /**< Minor version number */
int patch; /**< Patch version number */
const char *string; /**< Version string (e.g., "1.0.0") */
} aca_version_info_t;
/**
* @brief Get the major version number
* @return Major version number
*/
int aca_get_version_major(void);
/**
* @brief Get the minor version number
* @return Minor version number
*/
int aca_get_version_minor(void);
/**
* @brief Get the patch version number
* @return Patch version number
*/
int aca_get_version_patch(void);
/**
* @brief Get the version string
* @return Pointer to version string (e.g., "1.0.0")
*/
const char *aca_get_version_string(void);
/**
* @brief Get complete version information
* @return Structure containing all version information
*/
aca_version_info_t aca_get_version_info(void);
#ifdef __cplusplus
}
#endif
#endif /* RAS_DECODE_VERSION_H */
|