1 頁 (共 1 頁)

WebUI test

發表於 : 2024-05-28, 11:41
admin
WebUI: https://github.com/webui-dev/webui
Test on fivewin!!
compiler use 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
圖檔