mirror of
https://gitlab.com/freepascal.org/fpc/pas2js.git
synced 2025-04-05 15:57:45 +02:00

As indicated by @mvancanneyt in https://gitlab.com/freepascal.org/fpc/pas2js/-/issues/39289#note_2237702957 , the InstanceExports is correct.
51 lines
1.1 KiB
ObjectPascal
51 lines
1.1 KiB
ObjectPascal
program BrowserButton1;
|
|
|
|
{$mode objfpc}
|
|
|
|
uses
|
|
BrowserConsole, JS, Classes, SysUtils, Web, WasiEnv, WasiHostApp, JOB_Browser;
|
|
|
|
Type
|
|
|
|
{ TMyApplication }
|
|
|
|
TMyApplication = class(TBrowserWASIHostApplication)
|
|
Private
|
|
FWADomBridge : TJSObjectBridge;
|
|
function OnBeforeStart(Sender: TObject;
|
|
aDescriptor: TWebAssemblyStartDescriptor): Boolean;
|
|
Public
|
|
constructor Create(aOwner : TComponent); override;
|
|
procedure DoRun; override;
|
|
end;
|
|
|
|
function TMyApplication.OnBeforeStart(Sender: TObject;
|
|
aDescriptor: TWebAssemblyStartDescriptor): Boolean;
|
|
begin
|
|
FWADomBridge.InstanceExports:=aDescriptor.Exported;
|
|
Result:=true;
|
|
end;
|
|
|
|
constructor TMyApplication.Create(aOwner: TComponent);
|
|
begin
|
|
inherited Create(aOwner);
|
|
FWADomBridge:=TJSObjectBridge.Create(WasiEnvironment);
|
|
RunEntryFunction:='_initialize';
|
|
end;
|
|
|
|
procedure TMyApplication.DoRun;
|
|
begin
|
|
// Your code here
|
|
StartWebAssembly('WasiButton1.wasm',true,@OnBeforeStart);
|
|
end;
|
|
|
|
var
|
|
Application : TMyApplication;
|
|
|
|
begin
|
|
Application:=TMyApplication.Create(nil);
|
|
Application.Initialize;
|
|
Application.Run;
|
|
end.
|
|
|