Any way to use HTML as an interface to a C/C++ program?

前端 未结 7 1651
旧时难觅i
旧时难觅i 2020-12-11 01:51

I\'m developing a product that is interfaced over USB. I want to write a control app for it, but I cannot program a GUI for poo, so I came up with the idea of using a web pa

相关标签:
7条回答
  • 2020-12-11 02:39

    You could embed a simple http server (for example http://code.google.com/p/mongoose/) that exposes a REST interface to your apps functionality and serves a HTML page which can make calls to the interface.

    0 讨论(0)
提交回复
热议问题