kos_sys/dc/
fs_dclsocket.rs

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

use crate::prelude::*;

#[link(name = "kallisti")]
extern "C" {
    pub static mut dbgio_dcls: crate::os::dbgio::dbgio_handler_t;
    pub fn fs_dclsocket_init_console();
    pub fn fs_dclsocket_init() -> c_int;
    pub fn fs_dclsocket_shutdown();
}