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
use rubysys::libc::{intptr_t, uintptr_t};

pub use rubysys::libc::{c_char, c_double, c_int, c_long, c_void, size_t};

#[cfg(unix)]
pub use std::os::unix::io::RawFd;

pub use rubysys::typed_data::{RbDataType, RbDataTypeFunction};
pub use rubysys::value::{Value, ValueType};

pub type Id = uintptr_t;
pub type InternalValue = uintptr_t;
pub type SignedValue = intptr_t;

pub struct EncodingIndex(pub c_int);

pub type Argc = c_int;
pub type CallbackPtr = *const c_void;
pub type CallbackMutPtr = *mut c_void;
pub type BlockCallFunction = extern fn(
    yielded_arg: Value,
    callback_arg: Value,
    argc: c_int,
    argv: *const Value,
    block_arg: Value,
) -> Value;

#[repr(C)]
pub struct RBasic {
    pub flags: InternalValue,
    pub klass: InternalValue,
}