1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#![allow(unused)]
#![warn(missing_docs)]
#![warn(rustdoc::broken_intra_doc_links)]
#![cfg_attr(feature = "simd_allocator", feature(allocator_api))]
#![cfg_attr(feature = "nightly", feature(doc_cfg))]
pub mod audio;
mod error;
pub mod event;
pub mod file;
pub mod haptic;
pub mod hint;
#[cfg(feature = "mixer")]
pub mod mixer;
pub mod power;
mod sdl;
pub mod system;
mod timer;
#[cfg(feature = "ttf")]
pub mod ttf;
mod video;
use rich_sdl2_rust_sys as bind;
pub use error::*;
pub use event::{app, EventBox};
pub use sdl::*;
pub use timer::*;
pub use video::*;
#[cfg(not(target_env = "msvc"))]
type EnumInt = std::os::raw::c_uint;
#[cfg(target_env = "msvc")]
type EnumInt = std::os::raw::c_int;
pub(crate) unsafe fn as_raw<T>(opt: &Option<T>) -> *const T {
opt.as_ref().map_or(std::ptr::null(), |x| &*x)
}
pub(crate) unsafe fn as_raw_mut<T>(opt: &mut Option<T>) -> *mut T {
opt.as_mut().map_or(std::ptr::null_mut(), |x| &mut *x)
}