dynamorio_sys/
lib.rs

1#![no_std]
2#![allow(non_upper_case_globals)]
3#![allow(non_camel_case_types)]
4#![allow(non_snake_case)]
5#![allow(improper_ctypes)]
6
7include!(concat!(env!("OUT_DIR"), "/bindings.rs"));
8
9#[link(name = "wrapper")]
10extern "C" {
11    pub fn dr_stdout() -> file_t;
12    pub fn dr_stderr() -> file_t;
13    pub fn dr_stdin() -> file_t;
14}