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