zydis_sys/
lib.rs

1//! low level rust bindings for the zydis library for encoding/decoding and messing with x86 instructions.
2//! for higher level bindings, check out the `rydis` crate.
3
4#![no_std]
5#![allow(non_upper_case_globals)]
6#![allow(non_snake_case)]
7#![allow(non_camel_case_types)]
8
9include!(concat!(env!("OUT_DIR"), "/zydis.rs"));