[go: up one dir, main page]

sdl2-sys 0.0.33

Raw SDL2 bindings for Rust, used internally rust-sdl2
1
2
3
4
5
6
use libc::{c_char};

extern "C" {
    pub fn SDL_GetBasePath() -> *const c_char;
    pub fn SDL_GetPrefPath(arg: *const c_char, app: *const c_char) -> *const c_char;
}