mirror of
https://gitlab.com/freepascal.org/fpc/pas2js.git
synced 2025-04-05 04:17:54 +02:00
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:
parent
ee136fca55
commit
635d2f57a0
@ -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;
|
||||
|
||||
|
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user