luaur-vm 0.1.3

The Luau register virtual machine and standard library (Rust).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use crate::functions::lua_rawgetptagged::lua_rawgetptagged;

#[allow(non_snake_case)]
pub unsafe fn lua_rawgetp(
    l: *mut crate::records::lua_state::lua_State,
    idx: core::ffi::c_int,
    p: *mut core::ffi::c_void,
) -> core::ffi::c_int {
    #[cfg(not(feature = "internal_stub_resolution"))]
    {
        lua_rawgetptagged(l, idx, p, 0)
    }

    #[cfg(feature = "internal_stub_resolution")]
    {
        0
    }
}