Cthulhu
0.2.10
Cthulhu compiler collection
|
Version macros and types. More...
Data Structures | |
struct | version_info_t |
version information for a driver/interface/plugin More... | |
Macros | |
#define | CT_NEW_VERSION(major, minor, patch) (((major & 0xFF) << 24) | ((minor & 0xFF) << 16) | (patch & 0xFFFF)) |
creates a new ctu_version_t from major , minor and patch More... | |
#define | CT_VERSION_MAJOR(version) (((version) >> 24) & 0xFF) |
returns the major version of version More... | |
#define | CT_VERSION_MINOR(version) (((version) >> 16) & 0xFF) |
returns the minor version of version More... | |
#define | CT_VERSION_PATCH(version) ((version) & 0xFFFF) |
returns the patch version of version More... | |
#define | PRI_VERSION PRIuFAST32 |
Typedefs | |
typedef uint_fast32_t | ctu_version_t |
underlying type for ctu_version_t More... | |
Version macros and types.
#define CT_NEW_VERSION | ( | major, | |
minor, | |||
patch | |||
) | (((major & 0xFF) << 24) | ((minor & 0xFF) << 16) | (patch & 0xFFFF)) |
creates a new ctu_version_t from major
, minor
and patch
major | the major version |
minor | the minor version |
patch | the patch version |
Definition at line 20 of file version_def.h.
#define CT_VERSION_MAJOR | ( | version | ) | (((version) >> 24) & 0xFF) |
returns the major version of version
version | the version to get the major version from |
version
Definition at line 37 of file version_def.h.
#define CT_VERSION_MINOR | ( | version | ) | (((version) >> 16) & 0xFF) |
returns the minor version of version
version | the version to get the minor version from |
version
Definition at line 38 of file version_def.h.
#define CT_VERSION_PATCH | ( | version | ) | ((version) & 0xFFFF) |
returns the patch version of version
version | the version to get the patch version from |
version
Definition at line 39 of file version_def.h.
#define PRI_VERSION PRIuFAST32 |
Definition at line 44 of file version_def.h.
typedef uint_fast32_t ctu_version_t |
underlying type for ctu_version_t
Definition at line 42 of file version_def.h.