Cthulhu  0.2.10
Cthulhu compiler collection

Version macros and types. More...

Collaboration diagram for Version macros:

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...
 

Detailed Description

Version macros and types.

Macro Definition Documentation

◆ CT_NEW_VERSION

#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

Parameters
majorthe major version
minorthe minor version
patchthe patch version
Returns
the new ctu_version_t

Definition at line 20 of file version_def.h.

◆ CT_VERSION_MAJOR

#define CT_VERSION_MAJOR (   version)    (((version) >> 24) & 0xFF)

returns the major version of version

Parameters
versionthe version to get the major version from
Returns
the major version of version

Definition at line 37 of file version_def.h.

◆ CT_VERSION_MINOR

#define CT_VERSION_MINOR (   version)    (((version) >> 16) & 0xFF)

returns the minor version of version

Parameters
versionthe version to get the minor version from
Returns
the minor version of version

Definition at line 38 of file version_def.h.

◆ CT_VERSION_PATCH

#define CT_VERSION_PATCH (   version)    ((version) & 0xFFFF)

returns the patch version of version

Parameters
versionthe version to get the patch version from
Returns
the patch version of version

Definition at line 39 of file version_def.h.

◆ PRI_VERSION

#define PRI_VERSION   PRIuFAST32

Definition at line 44 of file version_def.h.

Typedef Documentation

◆ ctu_version_t

typedef uint_fast32_t ctu_version_t

underlying type for ctu_version_t

Definition at line 42 of file version_def.h.