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
74
75
76
77
78
79
80
81
use crate::rubysys::types::{c_char, c_int, c_void, Argc, CallbackPtr, Id, Value, VmPointer};
extern "C" {
// void
// ruby_init(void)
pub fn ruby_init();
// void
// ruby_init_loadpath(void)
pub fn ruby_init_loadpath();
// void
// ruby_vm_at_exit(void(*func)(ruby_vm_t *))
pub fn ruby_vm_at_exit(func: VmPointer);
// VALUE
// rb_block_proc(void)
pub fn rb_block_proc() -> Value;
// int
// rb_block_given_p(void)
pub fn rb_block_given_p() -> c_int;
// VALUE
// rb_errinfo(void)
pub fn rb_errinfo() -> Value;
// VALUE
// rb_eval_string(const char *str)
pub fn rb_eval_string(string: *const c_char) -> Value;
// VALUE
// rb_eval_string_protect(const char *str, int *pstate)
pub fn rb_eval_string_protect(string: *const c_char, state: *mut c_int) -> Value;
// VALUE
// rb_f_abort(int argc, const VALUE *argv)
pub fn rb_f_abort(argc: Argc, argv: *const Value) -> Value;
// //////////////// UNAVAILABLE METHOD ////////////////
// // VALUE
// // rb_f_eval(int argc, const VALUE *argv, VALUE self)
// pub fn rb_f_eval(argc: c_int, argv: *const Value, self_: Value) -> Value;
// ///////////////// ///////////////// ///////////////
// void
// rb_exc_raise(VALUE mesg)
pub fn rb_exc_raise(exception: Value);
// void
// rb_exit(int status)
pub fn rb_exit(status: c_int);
// void
// rb_raise(VALUE exc, const char *fmt, ...)
pub fn rb_raise(exception: Value, message: *const c_char);
// VALUE
// rb_require(const char *fname)
pub fn rb_require(name: *const c_char) -> Value;
// void
// rb_set_errinfo(VALUE err)
pub fn rb_set_errinfo(err: Value);
// VALUE
// rb_protect(VALUE (* proc) (VALUE), VALUE data, int *pstate)
pub fn rb_protect(func: CallbackPtr, args: *const c_void, state: *mut c_int) -> Value;
// VALUE
// rb_funcallv(VALUE recv, ID mid, int argc, const VALUE *argv)
pub fn rb_funcallv(receiver: Value, method: Id, argc: Argc, argv: *const Value) -> Value;
// VALUE
// rb_funcallv_public(VALUE recv, ID mid, int argc, const VALUE *argv)
pub fn rb_funcallv_public(receiver: Value, method: Id, argc: Argc, argv: *const Value)
-> Value;
// VALUE
// rb_block_call(VALUE obj, ID mid, int argc, const VALUE * argv,
// VALUE (*bl_proc) (ANYARGS), VALUE data2)
pub fn rb_block_call(
obj: Value,
method_id: Id,
argc: Argc,
argv: *const Value,
block: extern "C" fn(Value, Value, Argc, *const Value) -> Value,
outer_scope: Value,
) -> Value;
// VALUE
// rb_yield_splat(VALUE values)
pub fn rb_yield_splat(values: Value) -> Value;
// VALUE
// rb_yield(VALUE val)
pub fn rb_yield(value: Value) -> Value;
// VALUE
// rb_call_super(int argc, const VALUE *argv)
pub fn rb_call_super(argc: Argc, argv: *const Value) -> Value;
}