WebUI: https://github.com/webui-dev/webui
Test on fivewin!!
compiler BCC 7.4/x32
func main()
 msgInfo('begin')
 WebUI()
 msgInfo('end')
return
#pragma BEGINDUMP
#include "webui.h"
HB_FUNC(WEBUI){
  size_t my_window = webui_new_window();
  webui_show(my_window, "<html><head><script src=\"webui.js\"></script></head> Hello World ! </html>");
  webui_wait();
  return 0;
}
#pragma ENDDUMP
WeChat ID: ssbbstw
