* JOBCallback exists in job.js.pas

This commit is contained in:
Michael Van Canneyt 2024-12-02 21:25:20 +01:00
parent 3055de55dd
commit 80f9f00aa3
2 changed files with 0 additions and 18 deletions

View File

@ -55,15 +55,6 @@ begin
writeln('TWasmApp.Run END');
end;
// workaround: fpc wasm does not yet support exporting functions from units
function JOBCallback(const Func: TJOBCallback; Data, Code: Pointer; Args: PByte): PByte;
begin
Result:=JOB.JS.JOBCallback(Func,Data,Code,Args);
end;
exports
JOBCallback;
var
Application: TWasmApp;
begin

View File

@ -1231,15 +1231,6 @@ begin
WriteJSPropertyLongInt('Size',AValue);
end;
// workaround: fpc wasm does not yet support exporting functions from units
function JOBCallback(const Func: TJOBCallback; Data, Code: Pointer; Args: PByte): PByte;
begin
Result:=JOB.JS.JOBCallback(Func,Data,Code,Args);
end;
exports
JOBCallback;
var
Application: TWasmApp;
begin