[MODS/WASM] Add some more instructions

This commit is contained in:
luccie-cmd 2025-08-06 11:40:32 +02:00
parent a295365993
commit 98cbb47031
3 changed files with 43 additions and 20 deletions

View file

@ -1,19 +1,19 @@
pub extern fn logErr(
string: *const u8,
len: u64,
) void;
) callconv(.c) void;
pub extern fn logWarn(
string: *const u8,
len: u64,
) void;
) callconv(.c) void;
pub extern fn logInfo(
string: *const u8,
len: u64,
) void;
) callconv(.c) void;
pub extern fn logDebug(
string: *const u8,
len: u64,
) void;
) callconv(.c) void;