macro_rules! version {
($major:expr, $minor:expr) => { ... };
}
Expand description
Makes a VS compatible version integer
ยงExample
If wanting to represent the version with major 2 and minor 1
use rustsynth_sys::version;
let v = version!(2,1);
assert!(v == 0x20001);