Sha256: a8087b08e5d7526ae60d174cc5a4db58fd9f5b503b3e73bbb2f1621b155f7a52
Contents?: true
Size: 496 Bytes
Versions: 6
Compression:
Stored size: 496 Bytes
Contents
/** * @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 0 /** * 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.0.0" #endif
Version data entries
6 entries across 5 versions & 4 rubygems