vapoursynth_sys/lib.rs
1//! Raw bindings to [VapourSynth](https://github.com/vapoursynth/vapoursynth).
2
3#![allow(non_camel_case_types)]
4#![allow(non_snake_case)]
5#![allow(non_upper_case_globals)]
6
7// The bindings can be regenerated by using the `generate-bindings.sh` script,
8// or manually by copying the file generated by the `bindgen` feature.
9include!("bindings.rs");