Esempio n. 1
0
// luaL_checktype
func (L *State) CheckType(narg int, t LuaValType) {
	C.luaL_checktype(L.s, C.int(narg), C.int(t))
}
Esempio n. 2
0
func CheckType(L *State, narg int, t int) {
	C.luaL_checktype(L.s, C.int(narg), C.int(t))
}