manpagez: man pages & more
html files: harfbuzz
Home | html | info | man

hb-version

hb-version — Information about the version of HarfBuzz in use

Functions

Types and Values

Includes

#include <hb.h>

Description

These functions and macros allow accessing version of the HarfBuzz library used at compile- as well as run-time, and to direct code conditionally based on those versions, again, at compile- or run-time.

Functions

HB_VERSION_ATLEAST()

#define             HB_VERSION_ATLEAST(major,minor,micro)

Tests the library version at compile-time against a minimum value, as three integer components.

Parameters

major

the major component of the version number

 

minor

the minor component of the version number

 

micro

the micro component of the version number

 

hb_version ()

void
hb_version (unsigned int *major,
            unsigned int *minor,
            unsigned int *micro);

Returns library version as three integer components.

Parameters

major

Library major version component.

[out]

minor

Library minor version component.

[out]

micro

Library micro version component.

[out]

Since: 0.9.2


hb_version_atleast ()

hb_bool_t
hb_version_atleast (unsigned int major,
                    unsigned int minor,
                    unsigned int micro);

Tests the library version against a minimum value, as three integer components.

Parameters

major

Library major version component

 

minor

Library minor version component

 

micro

Library micro version component

 

Returns

true if the library is equal to or greater than the test value, false otherwise

Since: 0.9.30


hb_version_string ()

const char *
hb_version_string (void);

Returns library version as a string with three components.

Returns

Library version string

Since: 0.9.2

Types and Values

HB_VERSION_MAJOR

#define HB_VERSION_MAJOR 2

The major component of the library version available at compile-time.


HB_VERSION_MICRO

#define HB_VERSION_MICRO 1

The micro component of the library version available at compile-time.


HB_VERSION_MINOR

#define HB_VERSION_MINOR 8

The minor component of the library version available at compile-time.


HB_VERSION_STRING

#define HB_VERSION_STRING "2.8.1"

A string literal containing the library version available at compile-time.

© manpagez.com 2000-2024
Individual documents may contain additional copyright information.