diff options
| author | ruki <[email protected]> | 2025-12-06 23:13:59 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2025-12-07 17:15:58 +0800 |
| commit | 5bdfdc142885aa12a88d4f2fd3fe866067ce1a79 (patch) | |
| tree | c2e3175eb33c43f4a47670705b73efff22ee0507 /core/src/xmake/engine.c | |
| parent | 40d790cf416c8677c51a8e969d421e85c25a019b (diff) | |
add bin2coff
Diffstat (limited to 'core/src/xmake/engine.c')
| -rw-r--r-- | core/src/xmake/engine.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/src/xmake/engine.c b/core/src/xmake/engine.c index d71c05c62..34202d9e7 100644 --- a/core/src/xmake/engine.c +++ b/core/src/xmake/engine.c @@ -336,6 +336,7 @@ tb_int_t xm_package_loadxmi(lua_State *lua); // the utils functions tb_int_t xm_utils_bin2c(lua_State *lua); +tb_int_t xm_utils_bin2coff(lua_State *lua); #ifdef XM_CONFIG_API_HAVE_CURSES // register curses functions @@ -655,6 +656,7 @@ static luaL_Reg const g_package_functions[] = { // the utils functions static luaL_Reg const g_utils_functions[] = { { "bin2c", xm_utils_bin2c }, + { "bin2coff", xm_utils_bin2coff }, { tb_null, tb_null }, }; |
