DDeno•Created by sukeshpabolu on 10/11/2024 in #help Getting Error: Could not open library: The specified module could not be found. while opening a dll
This is the code
const dllPath = "./uFCoder-x86_64.dll"
const uFCoder = Deno.dlopen(
dllPath,
{
ReaderOpen: {
parameters: [],
result: "i32",
}
},
);
console.log(uFCoder.ReaderOpen())