How to integrate webkit into a C ++ Windows application

I downloaded the nightly webkit build , which includes dll, pdb. There are no header files, and I can not find the API documentation and use of the DLL.

I am looking for sample code to integrate it into a C ++ application and how to run queries, render them in a window or ideally a Direct X texture.

So far, my search is close to the website and the Internet in general.

+4
source share
2 answers

Why aren't you using QWebKit from Qt? see this

+2
source

You might want to check out the Chromium Embedded infrastructure available here: http://code.google.com/p/chromiumembedded/

I used it extensively and found it functional, stable and easy to use. It is smaller than QWebKit and has a more liberal license.

+13
source

All Articles