1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#![allow(unused, non_snake_case)]

#[no_mangle]
pub extern "C" fn blit(sprite: *const u8, x: i32, y: i32, width: u32, height: u32, flags: u32) {
    // Stub
}

#[no_mangle]
pub extern "C" fn blitSub(
    sprite: *const u8,
    x: i32,
    y: i32,
    width: u32,
    height: u32,
    src_x: u32,
    src_y: u32,
    stride: u32,
    flags: u32,
) {
    // Stub
}

#[no_mangle]
pub extern "C" fn line(x1: i32, y1: i32, x2: i32, y2: i32) {
    // Stub
}

#[no_mangle]
pub extern "C" fn oval(x: i32, y: i32, width: u32, height: u32) {
    // Stub
}

#[no_mangle]
pub extern "C" fn rect(x: i32, y: i32, width: u32, height: u32) {
    // Stub
}

#[no_mangle]
pub extern "C" fn textUtf8(text: *const u8, length: usize, x: i32, y: i32) {
    // Stub
}

#[no_mangle]
pub extern "C" fn vline(x: i32, y: i32, len: u32) {
    // Stub
}

#[no_mangle]
pub extern "C" fn hline(x: i32, y: i32, len: u32) {
    // Stub
}

#[no_mangle]
pub extern "C" fn tone(frequency: u32, duration: u32, volume: u32, flags: u32) {
    // Stub
}

#[no_mangle]
pub extern "C" fn diskr(dest: *mut u8, size: u32) -> u32 {
    // Stub
    0
}

#[no_mangle]
pub extern "C" fn diskw(src: *const u8, size: u32) -> u32 {
    // Stub
    0
}

#[no_mangle]
pub extern "C" fn traceUtf8(trace: *const u8, length: usize) {
    // Stub
}