Hello all,
The function ZydisGetVersion returns a combined value of (major, minor, patch, build). Since this feature of bindgen is not supported yet, we can not use existing macros, e.g. ZYDIS_VERSION_MAJOR to extract parts of the combined version. The PR allows:
let (major, minor, patch, build) = zydis::get_version();
Hello all, The function
ZydisGetVersion
returns a combined value of(major, minor, patch, build)
. Since this feature of bindgen is not supported yet, we can not use existing macros, e.g. ZYDIS_VERSION_MAJOR to extract parts of the combined version. The PR allows: