node-sys 0.4.2

Raw bindings to the Node.js API for projects using wasm-bindgen.
Documentation
use wasm_bindgen::prelude::*;

#[wasm_bindgen]
extern {
    pub type OsConstantsDlopen;

    // #[wasm_bindgen(method, getter)]
    // pub fn RTLD_DEEPBIND(this: &OsConstantsDlopen) -> i32;

    #[wasm_bindgen(method, getter)]
    pub fn RTLD_GLOBAL(this: &OsConstantsDlopen) -> i32;

    #[wasm_bindgen(method, getter)]
    pub fn RTLD_LAZY(this: &OsConstantsDlopen) -> i32;

    #[wasm_bindgen(method, getter)]
    pub fn RTLD_LOCAL(this: &OsConstantsDlopen) -> i32;

    #[wasm_bindgen(method, getter)]
    pub fn RTLD_NOW(this: &OsConstantsDlopen) -> i32;
}