What I need is simple: we have a console app project. We want to have such a function that would open a simple window with nothing but html (default system based) html + js rendering window that would read some default html+js string (form string or const char*). we want to have our own api joined with default js api so that when JS calls some our.function(argument); we would have our C++ application performe some function and for example cout argument. How to create such thing on windows?
| |||
|
feedback
|
| |||
feedback
|
|
Brushing aside any security / cross browser/platforms concerns you can use implement an ActiveX object in your C++ that you can invoked from javascript. http://msdn.microsoft.com/en-us/library/7sw4ddf8(v=vs.94).aspx | |||
|
feedback
|
|
The host for the See http://msdn.microsoft.com/en-us/library/aa770041.aspx#GetExternal | |||
|
feedback
|