mirror of
https://gitee.com/Vancouver2017/luban-lite-t3e-pro.git
synced 2025-12-14 10:28:54 +00:00
7 lines
182 B
Python
Executable File
7 lines
182 B
Python
Executable File
import ffi
|
|
|
|
print = ffi.func("v", "ef_print_env", "v")
|
|
set = ffi.func("i", "ef_set_env", "ss")
|
|
get = ffi.func("s", "ef_get_env", "s")
|
|
remove = ffi.func("i", "ef_del_env", "s")
|