Open vmx opened 2 years ago
The CUuuid byte type is std::os::raw::c_char and it depends on the platform, whether it is i8 or u8 in Rust. With just passing in 0 without a type identifier, both cases are handled. This makes the code more portable.
CUuuid
std::os::raw::c_char
i8
u8
0
A friendly ping if this PR could perhaps get a review (and ideally a release :) This would enable me to get off a fork and use the upstream version.
The
CUuuid
byte type isstd::os::raw::c_char
and it depends on the platform, whether it isi8
oru8
in Rust. With just passing in0
without a type identifier, both cases are handled. This makes the code more portable.