9 lines
174 B
Rust
9 lines
174 B
Rust
use windows_bindgen::*;
|
|
|
|
#[test]
|
|
fn bindings() -> Result<()> {
|
|
bindgen(["--etc", "tests/bindings.txt"])?;
|
|
bindgen(["--etc", "tests/com_bindings.txt"])?;
|
|
Ok(())
|
|
}
|