Skip to content

Commit 817b0dd

Browse files
committed
Update testcrate
1 parent 4d945ae commit 817b0dd

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

testcrate/src/lib.rs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,18 @@ use std::os::raw::{c_char, c_int, c_long, c_void};
55
pub struct lua_CompileOptions {
66
optimizationLevel: c_int,
77
debugLevel: c_int,
8+
typeInfoLevel: c_int,
89
coverageLevel: c_int,
910
vectorLib: *const c_char,
1011
vectorCtor: *const c_char,
12+
vectorType: *const c_char,
1113
mutableGlobals: *const *const c_char,
14+
userdataTypes: *const *const c_char,
15+
librariesWithKnownMembers: *const *const c_char,
16+
libraryMemberTypeCb: Option<unsafe extern "C" fn(*const c_char, *const c_char) -> c_int>,
17+
libraryMemberConstantCb:
18+
Option<unsafe extern "C" fn(*const c_char, *const c_char, *mut *mut c_void)>,
19+
disabledBuiltins: *const *const c_char,
1220
}
1321

1422
extern "C" {

0 commit comments

Comments
 (0)