sukesh paboluS
Denoβ€’17mo agoβ€’
9 replies
sukesh pabolu

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())
Was this page helpful?