And if we remove complex structures and leave only the HTTP server for the local network? I think that this way we can make protected web apps with webview — or am I wrong?
in MacOS (ARM) occurs :

in linux (ARM with parallels desktop) occurs :






Code: Select all
CompilerIf #PB_Compiler_OS = #PB_OS_Linux
Procedure MyMessageRequester(Title.s, Text.s, Flags=0)
Protected r1
gdk_threads_enter_();
r1 = MessageRequester(Title, Text, Flags)
gdk_flush_()
gdk_threads_leave_()
ProcedureReturn r1
EndProcedure
Macro MessageRequester(Title, Text, Flags=0)
MyMessageRequester(Title, Text, Flags)
EndMacro
CompilerEndIf

I achieved the goal I was aiming for xD