zydis-sys 0.1.2

low level rust bindings for the zydis library
Documentation
1
2
3
4
5
6
7
8
9
//! low level rust bindings for the zydis library for encoding/decoding and messing with x86 instructions.
//! for higher level bindings, check out the `rydis` crate.

#![no_std]
#![allow(non_upper_case_globals)]
#![allow(non_snake_case)]
#![allow(non_camel_case_types)]

include!(concat!(env!("OUT_DIR"), "/zydis.rs"));