// Copyright 2013 The Servo Project Developers. See the COPYRIGHT // file at the top-level directory of this distribution. // // Licensed under the Apache License, Version 2.0 or the MIT license // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. // this file defines CGFloat, as well as stubbed data types. #![allow(non_camel_case_types)] #![allow(non_upper_case_globals)] use libc; #[cfg(any(target_arch = "x86", target_arch = "arm", target_arch = "aarch64"))] pub type boolean_t = libc::c_int; #[cfg(target_arch = "x86_64")] pub type boolean_t = libc::c_uint; #[cfg(target_pointer_width = "64")] pub type CGFloat = libc::c_double; #[cfg(not(target_pointer_width = "64"))] pub type CGFloat = libc::c_float; pub type CGError = libc::int32_t; pub type CGGlyph = libc::c_ushort;