fermium 22605.0.1

An opinionated crate of SDL2 bindings.
Documentation
1
2
3
4
5
6
7
8
//! Platform based functions.

use crate::c_char;

extern "C" {
  /// Gets the name of the platform.
  pub fn SDL_GetPlatform() -> *const c_char;
}