blob: 5e225e3db6c84b7b866c045c18379672c7c880bd [file] [log] [blame]
#![allow(
dead_code,
non_snake_case,
non_camel_case_types,
non_upper_case_globals
)]
pub mod Foo {
pub type Type = ::std::os::raw::c_uint;
pub const bar: Type = 0;
pub const baz: Type = 1;
pub const blap: Type = 2;
}
extern "C" {
pub fn func(x: Foo::Type);
}