// surfman/surfman/src/platform/macos/system/ffi.rs
//
//! FFI definitions for the macOS backend.
pub const kIODefaultCache: i32 = 0;
pub const kIOWriteCombineCache: i32 = 4;
pub const kIOMapCacheShift: i32 = 8;
pub const kIOMapDefaultCache: i32 = kIODefaultCache << kIOMapCacheShift;
pub const kIOMapWriteCombineCache: i32 = kIOWriteCombineCache << kIOMapCacheShift;