vdpau_sys/lib.rs
1#![allow(non_upper_case_globals, non_camel_case_types, non_camel_case_types, non_snake_case)]
2
3extern crate libc;
4#[cfg(any(target_os = "linux",
5 target_os = "freebsd",
6 target_os = "openbsd",
7 target_os = "netbsd"))]
8extern crate x11;
9
10
11
12pub mod vdpau;
13#[cfg(any(target_os = "linux",
14 target_os = "freebsd",
15 target_os = "openbsd",
16 target_os = "netbsd"))]
17pub mod vdpau_x11;