vita2d-sys 0.1.1

Low-level bindings for the vita2d library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![allow(non_upper_case_globals)]
#![allow(non_camel_case_types)]
#![allow(non_snake_case)]
#![allow(nonstandard_style)]
#![doc = include_str!("../README.md")]
#![cfg_attr(
    not(target_os = "vita"),
    doc = "\n\n# This crate provides bindings to the PlayStation Vita's native APIs. It is only intended to be used on the Vita platform, and will not work on other platforms."
)]

#[cfg(feature = "bindgen")]
include!(concat!(env!("OUT_DIR"), "/bindings.rs"));

#[cfg(not(feature = "bindgen"))]
mod bindings;
#[cfg(not(feature = "bindgen"))]
pub use bindings::*;