* Handle console messages

This commit is contained in:
Michael Van Canneyt 2025-05-05 21:25:09 +02:00
parent 15ffdf1fe1
commit 6056078a27

View File

@ -3,7 +3,7 @@ program wasmthreadcontroller;
{$mode objfpc}
uses
Classes, WasiWorkerThreadHost;
Classes, Rtl.threadcontroller, Rtl.workerthreadhost;
type
{ TApplication }
@ -17,6 +17,7 @@ var
App: TApplication;
begin
globalThreadController.HandleConsoleMessages:=true;
App:=TApplication.Create(nil);
App.Run;
end.