Using the C++ API

๐Ÿ“˜

Need C API Instead?

We also offer a C API for use within C and other languages!

See Using the C API

Set Up Include Directories

To use Ultralight in your C++ code, add the following path to your project's include directories (replace <SDK_ROOT> with the path to the Ultralight SDK):

<SDK_ROOT>/include/

Include Headers In Your Code

Simply include <Ultralight/Ultralight.h> at the top of your code to import the API.

#include <Ultralight/Ultralight.h>

If you want to use the optional AppCore API (cross-platform windowing/drawing layer), you should also include <AppCore/AppCore.h> at the top of your code.

#include <AppCore/AppCore.h>

Ultralight also exposes the full JavaScriptCore API so that users can make native calls to/from the JavaScript VM. To include these headers simply add:

#include <JavaScriptCore/JavaScript.h>