WebUI test

xBase/clipper
回覆文章
admin
Site Admin
文章: 53
註冊時間: 2014-09-23, 10:58

WebUI test

文章 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
圖檔
line ID: ssbbstw
WeChat ID: ssbbstw
回覆文章