kos_sys/arch/
types.rs

1
2
3
4
5
6
7
8
9
10
// Rust for KallistiOS/Dreamcast
// Copyright (C) 2024 Eric Fradella
// https://dreamcast.rs/

use crate::prelude::*;

pub type ptr_t = u32;
pub type handle_t = c_int;
pub type tid_t = handle_t;
pub type prio_t = handle_t;