我们如何在chrome embedded中加载google chrome的pdf.dll插件来查看pdf文件?

时间:2012-03-12 16:20:48

标签: chromium

为此,我编码:

cef_string_t sExtraPath;
memset(&sExtraPath, 0, sizeof(cef_string_t));

settings.extra_plugin_paths = cef_string_list_alloc();
CefString(&sExtraPath).FromString("pdf.dll");
cef_string_list_append(settings.extra_plugin_paths, &sExtraPath);

CefInitialize(settings, app);

但是在打开pdf文件时会显示“缺少插件”等消息。

1 个答案:

答案 0 :(得分:3)