don't use this:
    
    
    let dll = joinPath(getAppDir(), "DebenuPDFLibrary64DLL1311.dll")
    

(That's what the OS does for you anyway, it looks up dlls next to your exe.)

Use this:
    
    
    const dll = "DebenuPDFLibrary64DLL1311.dll"
    

Reply via email to