J. Nee
J. Nee

Reputation: 1

How to call v8 functions directly from pdfium.dll

I'm trying to include pdfium in my development as dll. Most of FPDF_* functions are directly accessible, however I cannot reference v8 related functions, e.g. v8::initializeICU(), v8::InitializePlatform(). Since I'm totally new to this project, and have to raise following questions:

  1. Are v8 related functions really unavailable in pdfium.dll?
  2. If not, which lib files I should reference in a c++ project, in order to call the v8 related functions?
  3. Is there any way to reference v8 functions without referring to the lib files?

Upvotes: 0

Views: 456

Answers (1)

dj2
dj2

Reputation: 9598

PDFium does not include v8 library code. You'll need to link the v8 libraries as well as the PDFium libraries. You'll probably need the libv8_libbase and libv8_libplatform libraries.

Upvotes: 0

Related Questions