Fix wasienv examples to use InstanceExports, not WasiExports

As indicated by @mvancanneyt in https://gitlab.com/freepascal.org/fpc/pas2js/-/issues/39289#note_2237702957 , the InstanceExports is correct.
This commit is contained in:
Michalis Kamburelis 2024-12-03 13:05:50 +01:00
parent ee136fca55
commit 635d2f57a0
2 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@ Type
function TMyApplication.OnBeforeStart(Sender: TObject;
aDescriptor: TWebAssemblyStartDescriptor): Boolean;
begin
FWADomBridge.WasiExports:=aDescriptor.Exported;
FWADomBridge.InstanceExports:=aDescriptor.Exported;
Result:=true;
end;

View File

@ -22,7 +22,7 @@ Type
function TMyApplication.OnBeforeStart(Sender: TObject;
aDescriptor: TWebAssemblyStartDescriptor): Boolean;
begin
FWADomBridge.WasiExports:=aDescriptor.Exported;
FWADomBridge.InstanceExports:=aDescriptor.Exported;
Result:=true;
end;