|
12345678910111213141516171819202122232425262728293031323334 |
- #pragma once
-
- #include "private/macros.h"
- #include "private/std.h"
-
- #ifdef __cplusplus
- extern "C" {
- #endif
-
- typedef struct clap_version {
- // This is the major ABI and API design
- // Version 0.X.Y correspond to the development stage, API and ABI are not stable
- // Version 1.X.Y correspont to the release stage, API and ABI are stable
- uint32_t major;
- uint32_t minor;
- uint32_t revision;
- } clap_version_t;
-
- #ifdef __cplusplus
- }
- #endif
-
- #define CLAP_VERSION_MAJOR ((uint32_t)1)
- #define CLAP_VERSION_MINOR ((uint32_t)1)
- #define CLAP_VERSION_REVISION ((uint32_t)1)
- #define CLAP_VERSION_INIT {CLAP_VERSION_MAJOR, CLAP_VERSION_MINOR, CLAP_VERSION_REVISION}
-
- static const CLAP_CONSTEXPR clap_version_t CLAP_VERSION = CLAP_VERSION_INIT;
-
- CLAP_NODISCARD static inline CLAP_CONSTEXPR bool
- clap_version_is_compatible(const clap_version_t v) {
- // versions 0.x.y were used during development stage and aren't compatible
- return v.major >= 1;
- }
|