sdl3-sys 0.6.3+SDL-3.4.4

Low level Rust bindings for SDL 3
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Metadata for items in the `crate::timer` module

use super::*;

pub const METADATA_SDL_TimerID: Group = Group {
    module: "timer",
    kind: GroupKind::Id,
    name: "SDL_TimerID",
    short_name: "TimerID",
    doc: Some(
        "Definition of the timer ID type.\n\n## Availability\nThis datatype is available since SDL 3.2.0.\n",
    ),
    available_since: Some(SDL_VERSIONNUM(3, 2, 0)),
    values: &[],
};