fruity 0.3.0

Rusty bindings for Apple libraries
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! [Core Graphics](https://developer.apple.com/documentation/coregraphics) framework.
//!
//! # Feature Flag
//!
//! This module corresponds to the **`core_graphics`**
//! [feature flag](../index.html#feature-flags).

#![cfg(feature = "core_graphics")]

#[link(name = "CoreGraphics", kind = "framework")]
extern "C" {}

mod geometry;

pub use geometry::*;