blob: 0a2a8c8fce5a25e4d8327323cf5af165f8be1c74 (
plain)
1234567891011121314151617181920212223242526272829 | /** * @file version.h * * The version of the Prism library. */ #ifndef PRISM_VERSION_H #define PRISM_VERSION_H /** * The major version of the Prism library as an int. */ #define PRISM_VERSION_MAJOR 1 /** * The minor version of the Prism library as an int. */ #define PRISM_VERSION_MINOR 4 /** * The patch version of the Prism library as an int. */ #define PRISM_VERSION_PATCH 0 /** * The version of the Prism library as a constant string. */ #define PRISM_VERSION "1.4.0" #endif
|