view OrthancFramework/Resources/CMake/WebAssembly/ArithmeticTests/app.js @ 6038:dfc271554574 Orthanc-1.12.6

hot fix: fix HttpClient.Ssl unit test
author Alain Mazy <am@orthanc.team>
date Tue, 11 Mar 2025 15:34:04 +0100
parents d25f4c0fa160
children
line wrap: on
line source

function Initialize()
{
  Module.ccall('Run2', // name of C function
               null, // return type
               [], // argument types
               []);

  Module.ccall('Run', // name of C function
               'number', // return type
               [], // argument types
               []);
}


var Module = {
  preRun: [],
  postRun: [ Initialize ],
  print: function(text) {
    console.log(text);
  },
  printErr: function(text) {
    if (text != 'Calling stub instead of signal()')
    {
      document.getElementById("stderr").textContent += text + '\n';
    }
  },
  totalDependencies: 0
};


if (!('WebAssembly' in window)) {
  alert('Sorry, your browser does not support WebAssembly :(');
} else {
}