DOKK / manpages / debian 13 / libzycore-doc / Zycore.h.3.en
include/Zycore/Zycore.h(3) Library Functions Manual include/Zycore/Zycore.h(3)

include/Zycore/Zycore.h

#include <Zycore/Types.h>


#define ZYCORE_VERSION 0x0001000500020000ULL
#define ZYCORE_VERSION_MAJOR(version) ((version & 0xFFFF000000000000) >> 48)
#define ZYCORE_VERSION_MINOR(version) ((version & 0x0000FFFF00000000) >> 32)
#define ZYCORE_VERSION_PATCH(version) ((version & 0x00000000FFFF0000) >> 16)
#define ZYCORE_VERSION_BUILD(version) (version & 0x000000000000FFFF)


ZYCORE_EXPORT ZyanU64 ZycoreGetVersion (void)

Master include file, including everything else.

A macro that defines the zycore version.

Extracts the build-part of the zycore version.

Parameters

version The zycore version value

Extracts the major-part of the zycore version.

Parameters

version The zycore version value

Extracts the minor-part of the zycore version.

Parameters

version The zycore version value

Extracts the patch-part of the zycore version.

Parameters

version The zycore version value

ZYCORE_EXPORT ZyanU64 ZycoreGetVersion (void)

Returns the zycore version.

Returns

The zycore version.

Use the macros provided in this file to extract the major, minor, patch and build part from the returned version value.

Generated automatically by Doxygen for Zycore from the source code.

Version 1.5.2.0 Zycore