Giter Site home page Giter Site logo

winsoft666 / qcefwidget Goto Github PK

View Code? Open in Web Editor NEW
256.0 26.0 58.0 12.39 MB

A Qt widget that can render and interact with webpage.

License: GNU Lesser General Public License v3.0

CMake 3.09% C++ 81.06% C 0.98% HTML 11.96% CSS 2.10% JavaScript 0.48% Batchfile 0.33%
cef qt osr cefview qcefview qt5

qcefwidget's Introduction

Hi 👋 I'm a Problem Solver

I'm also a Code Cooker.

If I can't find one to satisfy me, I will cook one.

These dishes cooked by me.

  • QCefWidget
    A Qt widget that can render and interact with webpage.
  • zoe
    C++ File Download Library.
  • veigar
    Cross platform RPC library using shared memory.
  • Qt-FramelessWindow
    Perfect Qt frameless window implement (only one header file).
  • duilib2
    Duilib enhanced version.
  • NSIS-UI-Plugin
    Create NSIS Modern UI Setup by Using Thirdparty UI Library(such as Qt, DuiLib)
  • vlc-qt2
    A library to connect Qt application with libVLC.
  • electron-vue3-boilerplate
    A boilerplate for quickly create high quality app with Electron, Vue3, TypeScript and Vite.
  • cef_binary
    CEF precompiled files for windows.
  • easyzip
    C++ wrapper around zlib compression library.
  • CrashRptLite
    A crash reporting system for Windows applications.
  • qt-source-compile
    Compile x86/x64 Qt 5/6 library.
  • HFR
    Human Face Recognition System.
  • node-addon-sample
    A node addon sample.

qcefwidget's People

Contributors

winsoft666 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

qcefwidget's Issues

WebView will steal focus automatically

In QWidgetTest project, I open a webview;
then I change the address in main window, the webview will take focus automatically
Can I disable this feature?

Cannot compile with CEF 90.6.6+g3c44b04+chromium-90.0.4430.93

Error C3668
'QCefBrowserApp::GetPrintHandler': method with override specifier 'override' did not override any base class methods QCefWidget
...\src\QCefWidget\CefBrowserApp\QCefBrowserApp.h	39

Removing the definition/declaration (which returns "nullptr" anyway) solves the problem.

ExecuteRemoveEventListener删除list的迭代器失效问题

`
void QCefClient::V8Handler::ExecuteRemoveEventListener(
const CefString& function,
CefRefPtr object,
const CefV8ValueList& arguments,
CefRefPtr& retval,
CefString& exception) {
bool bRet = false;

if (arguments.size() == 2) {
if (arguments[0]->IsString()) {
if (arguments[1]->IsFunction()) {
CefString eventName = arguments[0]->GetStringValue();
EventListener listener;
listener.callback_ = arguments[1];
listener.context_ = CefV8Context::GetCurrentContext();

    auto itListenerList = eventListenerListMap_.find(eventName);
    if (itListenerList != eventListenerListMap_.end()) {
      EventListenerList& eventListenerList = itListenerList->second;
      for (auto itListener = eventListenerList.begin();
            itListener != eventListenerList.end();) {
          if (itListener->callback_->IsSame(listener.callback_)) {
            itListener = eventListenerList.erase(itListener);
          }
          else {
            ++itListener;
          }
      }
    }
  }
  else
    exception = "Invalid parameters; parameter 2 is expecting a function";
}
else
  exception = "Invalid parameters; parameter 1 is expecting a string";

}
else
exception = "Invalid parameters; expecting 2 parameters";

retval = CefV8Value::CreateBool(bRet);
}
`

Qt 5.12.10 QWidget不存在screen函数

你好winsoft666,我目前使用的Qt版本是Qt5.12.10。更新QCefWidget后发QCefWidgetImpl使用了screen函数,但是Qt5.12.10不存在screen函数。
connect(pWidget_->window()->screen(), &QScreen::logicalDotsPerInchChanged, this, &QCefWidgetImpl::onScreenLogicalDotsPerInchChanged);

这个功能是不是应该做Qt版本兼容,还是QWidget已经放弃兼容Qt 5.12.10这个版本了?谢谢

在最前端,这个能获取到Cookie吗?

你好,在最前端,这个能获取到Cookie吗?
也有关注你之前的那个版本,自定义协议请求后,跳转后html 页面消失的那个问题这版本能解决吗?

5.12.10编译有错误

TestWnd.cpp(225,46): error C2039: "SkipEmptyParts": 不是 "Qt" 的成员

还有这个 connect(pWidget_->window()->screen(), &QScreen::logicalDotsPerInchChanged, this, &QCefWidgetImpl::onScreenLogicalDotsPerInchChanged);

Several problems found after integrating QCefWidget1.0.3+CEF89.0.18

Hi there, I was using QCefWidget1.0.3+cef_binary_89.0.18+gb36241d+chromium-89.0.4389.114_windows32.
The demo runs well, but after I integrated into my own project, I found several problems and can't figure out what the cause is.

Issue 1:
Under debug mode, If I select some text on the web or simply press the left mouse button and drag, the app will crash immediately, the debug message showing I was the libcef.dll crashing.
Under release mode , It won't crash if I doing this.

Issue 2:
If I enable the context menu by "pCefGLWidget_->setContextMenuEnabled(contextMenuEnabled_)", the context menu did shows, but the menu won't disapear if I click the elsewhere on the page.

Issue 3:
Textbox can't get focus automatically if using tab key moving aroud several textboxes.

I also test the QCefWidgetTest.exe, it does't have such problems. I was wondering what the cause is.
Thanks in advance!

Debug状态下,双击界面标题栏,直接崩溃

创建浏览器窗口的代码:
`myCef::myCef(QWidget *parent)
: QMainWindow(parent)
{
ui.setupUi(this);

//关联事件
connect(ui.btn_go, &QPushButton::clicked, this, &myCef::btn_go_clicked);

//初始化CEF
pCefWnd = new CefWnd(false, false);
connect(pCefWnd, &QWidget::destroyed, this, &myCef::onCefWndDestroyed);//销毁浏览器
pCefWnd->setUsingGLWidget(true);//启用opengl
pCefWnd->setOsrEnabled(true);//离屏渲染
pCefWnd->setContextMenuEnabled(true);//右键菜单
pCefWnd->setUsingHideInsteadClose(false);//隐藏代替u绀碧
pCefWnd->setAutoAddDevToolsContextMenu(true);//检查元素右键菜单
pCefWnd->setAllowExecuteUnknownProtocolViaOS(true);//设置允许执行未知协议
pCefWnd->setMaximumFps(30);//设置最大帧率
//pCefWnd->setWindowBkColor(winBkColor);//设置窗口背景色
//pCefWnd->setBrowserBkColor(browserBkColor); //浏览器背景色

pCefWnd->setInitSize(QSize(800, 600)); //初始化大小
pCefWnd->setInitUrl("http://www.baidu.com");     
ui.layout_body->addWidget(pCefWnd);
pCefWnd->setupUi();
pCefWnd->show(); //显示浏览器

}`

image

直接报错了:
image

同样的代码不变,换成release模式,就不会有这种问题,请问是什么原因呢

先显示窗体再初始化CefWidget会崩溃

要在QWidget的show()方法之前初始化CefWidget可正常使用。
如果先让窗体显示再初始化CefWidget则直接崩溃。
大佬能解决这个问题吗? 非常感谢!!!

如何设置命令行参数

在cef sdk中,有个cefclient的程序,如果要cefclient支持webrtc,就添加enable-media-stream命令行参数即可。

在QCefWidget中,如何添加类似的参数?

Help request for loading an internal "qrc" resource

I wanted to ask if you have any idea how to load an internal resource, e.g. by entering the qrc path in the address bar of the example application. Both of the following syntaxes are not working:

"qrc:/QCefWidgetTest/images/visible.svg"
":/QCefWidgetTest/images/visible.svg"

Thanks in advance

64位 cmake之后编译错误

QCefBrowserHandler.cpp(187): error C2664: 'QString QString::arg(const QString &,int,QChar) const': cannot convert argument 1 from 'std::wstring' to 'qlonglong'
QCefWidgetImpl.cpp(514): error C2665: 'QMetaObject::invokeMethod': none of the 4 overloads could convert all the argument types
qt5.9.9

Grab the content of a QCefWidget to a QImage

Dear developer,
I am trying to find a solution to how I can capture the QWidget (QCefWidget) content and save it in a QImage.
I tried with the typical "myWidget->grab()" function or the equivalent using a QPainter, but the result doesn't change:
I only get the background content of the QWidget but not the real content (web page).
Do you have any idea how to do this?

Thanks in advance.
J.

Mouse tracking is not working inside cefwidget instance

Hello, I want tracking mouse movement, but its failed. I use https://github.com/winsoft666/QCefWidget/tree/v1.0.2 ( for vs2017 reason )

cefwnd.cpp

pCefGLWidget_->setMouseTracking(true);
...

void CefWnd::mouseMoveEvent(QMouseEvent* event) {
  qDebug() << event->pos();
}

cefwnd.h

void mouseMoveEvent(QMouseEvent* event) override;

qcefwidget.h

void mouseMoveEvent(QMouseEvent* event) override;

qcefwidget.cpp

void QCefWidget::mouseMoveEvent(QMouseEvent* event) {
  Q_ASSERT(pImpl_);
  emit QWidget::mouseMoveEvent(event);
}

How to accomplished this one?

Multi instance trigger "Check failed: !IsCefShutdown()"

Sample code:

MainWindow::MainWindow(QWidget *parent)
	: QMainWindow(parent)
{
	ui.setupUi(this);

	m_pCefWidget1 = new QCefWidget("https://www.baidu.com");
	m_pCefWidget2 = new QCefWidget("https://www.baidu.com");
	m_pCefWidget1->setAutoDestoryCefWhenCloseEvent(true);
	m_pCefWidget2->setAutoDestoryCefWhenCloseEvent(true);
}

MainWindow::~MainWindow()
{
	delete m_pCefWidget1;
	delete m_pCefWidget2;
}

The app crashing when closing window, how to delete qcefwidget correctly.

[0812/134958.089:FATAL:shutdown_checker.cc(52)] Check failed: !IsCefShutdown(). Object reference incorrectly held at CefShutdown
glacier.exe has triggered a breakpoint.

QT 5.15.2+cef_binary_89.0.18+gb36241d+chromium-89.0.4389.114_windows32编译报错

您好, 我使用如下编译命令编译, 出现无法解析外部命令的错误
mkdir build && cd build
cmake .. && cmake --build .

config.make配置如下:

Build environment

set(PROJECT_ARCH "x86")

QCefWidget Version

SET(QCEF_VERSION_MAJOR 1)
SET(QCEF_VERSION_MINOR 0)
SET(QCEF_VERSION_PATCH 3)

The Qt SDK path

set(QT_SDK_DIR "C:\Qt\5.15.2\")

The root dir of the CEF SDK

set(CEF_SDK_DIR "${CMAKE_CURRENT_SOURCE_DIR}/dep/cef_binary_89.0.18+gb36241d+chromium-89.0.4389.114_windows32")
#set(CEF_SDK_DIR "${CMAKE_CURRENT_SOURCE_DIR}/dep/cef_binary_76.1.13+gf19c584+chromium-76.0.3809.132_windows32")
#set(CEF_SDK_DIR "${CMAKE_CURRENT_SOURCE_DIR}/dep/cef_binary_3.3626.1895.g7001d56_windows32")

CEF version

SET(CEF_VERSION_MAJOR 89)
SET(CEF_VERSION_MINOR 0)
SET(CEF_VERSION_PATCH 18)

SET(QCEF_WING_EXE "QCefWing")
SET(QCEF_WIDGET_DLL "QCefWidget")
SET(QCEF_WIDGET_SDK_OUT_DIR "${CMAKE_SOURCE_DIR}/out")

编译输出日志如下:

-- Building for: Visual Studio 16 2019
-- Selecting Windows SDK version 10.0.22000.0 to target Windows 10.0.19043.
-- The C compiler identification is MSVC 19.29.30037.0
-- The CXX compiler identification is MSVC 19.29.30037.0
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.29.30037/bin/Hostx64/x64/cl.exe - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working CXX compiler: C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.29.30037/bin/Hostx64/x64/cl.exe - skipped
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- *** CEF CONFIGURATION SETTINGS ***
-- Generator: Visual Studio 16 2019
-- Platform: Windows
-- Project architecture: x86
-- Binary distribution root: C:/repo/opensource/QCefWidget/dep/cef_binary_89.0.18+gb36241d+chromium-89.0.4389.114_windows32
-- Visual Studio ATL support: OFF
-- CEF sandbox: OFF
-- Standard libraries: comctl32.lib;rpcrt4.lib;shlwapi.lib;ws2_32.lib
-- Compile defines: __STDC_CONSTANT_MACROS;__STDC_FORMAT_MACROS;WIN32;_WIN32;_WINDOWS;UNICODE;_UNICODE;WINVER=0x0601;_WIN32_WINNT=0x601;NOMINMAX;WIN32_LEAN_AND_MEAN;_HAS_EXCEPTIONS=0
-- Compile defines (Debug):
-- Compile defines (Release): NDEBUG;_NDEBUG
-- C compile flags: /MP;/Gy;/GR-;/W4;/WX;/wd4100;/wd4127;/wd4244;/wd4481;/wd4512;/wd4701;/wd4702;/wd4996;/Zi
-- C compile flags (Debug): /MDd;/RTC1;/Od
-- C compile flags (Release): /MD;/O2;/Ob2;/GF
-- C++ compile flags: /MP;/Gy;/GR-;/W4;/WX;/wd4100;/wd4127;/wd4244;/wd4481;/wd4512;/wd4701;/wd4702;/wd4996;/Zi
-- C++ compile flags (Debug): /MDd;/RTC1;/Od
-- C++ compile flags (Release): /MD;/O2;/Ob2;/GF
-- Exe link flags: /MANIFEST:NO;/LARGEADDRESSAWARE
-- Exe link flags (Debug): /DEBUG
-- Exe link flags (Release):
-- Shared link flags:
-- Shared link flags (Debug): /DEBUG
-- Shared link flags (Release):
-- CEF Binary files: chrome_elf.dll;libcef.dll;libEGL.dll;libGLESv2.dll;snapshot_blob.bin;v8_context_snapshot.bin;swiftshader;d3dcompiler_47.dll
-- CEF Resource files: cef.pak;cef_100_percent.pak;cef_200_percent.pak;cef_extensions.pak;devtools_resources.pak;icudtl.dat;locales
-- Configuring done
-- Generating done
-- Build files have been written to: C:/repo/opensource/QCefWidget/build
用于 .NET Framework 的 Microsoft (R) 生成引擎版本 16.10.0+4242f381a
版权所有(C) Microsoft Corporation。保留所有权利。

Checking Build System
Building Custom Rule C:/repo/opensource/QCefWidget/dep/cef_binary_89.0.18+gb36241d+chromium-89.0.4389.114_windows32/libcef_dll/CMakeLists.txt
shutdown_checker.cc
transfer_util.cc
cef_atomicops_x86_gcc.cc
cef_bind_helpers.cc
cef_callback_internal.cc
cef_lock.cc
cef_lock_impl.cc
cef_logging.cc
cef_ref_counted.cc
cef_string16.cc
cef_thread_checker_impl.cc
cef_weak_ptr.cc
accessibility_handler_cpptoc.cc
app_cpptoc.cc
audio_handler_cpptoc.cc
base_ref_counted_cpptoc.cc
base_scoped_cpptoc.cc
browser_process_handler_cpptoc.cc
client_cpptoc.cc
completion_callback_cpptoc.cc
context_menu_handler_cpptoc.cc
cookie_access_filter_cpptoc.cc
cookie_visitor_cpptoc.cc
delete_cookies_callback_cpptoc.cc
dev_tools_message_observer_cpptoc.cc
dialog_handler_cpptoc.cc
display_handler_cpptoc.cc
domvisitor_cpptoc.cc
download_handler_cpptoc.cc
download_image_callback_cpptoc.cc
drag_handler_cpptoc.cc
end_tracing_callback_cpptoc.cc
extension_handler_cpptoc.cc
find_handler_cpptoc.cc
focus_handler_cpptoc.cc
jsdialog_handler_cpptoc.cc
keyboard_handler_cpptoc.cc
life_span_handler_cpptoc.cc
load_handler_cpptoc.cc
media_observer_cpptoc.cc
media_route_create_callback_cpptoc.cc
media_sink_device_info_callback_cpptoc.cc
menu_model_delegate_cpptoc.cc
navigation_entry_visitor_cpptoc.cc
pdf_print_callback_cpptoc.cc
print_handler_cpptoc.cc
read_handler_cpptoc.cc
register_cdm_callback_cpptoc.cc
render_handler_cpptoc.cc
render_process_handler_cpptoc.cc
request_context_handler_cpptoc.cc
request_handler_cpptoc.cc
resolve_callback_cpptoc.cc
resource_bundle_handler_cpptoc.cc
resource_handler_cpptoc.cc
resource_request_handler_cpptoc.cc
response_filter_cpptoc.cc
run_file_dialog_callback_cpptoc.cc
scheme_handler_factory_cpptoc.cc
server_handler_cpptoc.cc
set_cookie_callback_cpptoc.cc
string_visitor_cpptoc.cc
task_cpptoc.cc
urlrequest_client_cpptoc.cc
v8accessor_cpptoc.cc
v8array_buffer_release_callback_cpptoc.cc
v8handler_cpptoc.cc
v8interceptor_cpptoc.cc
web_plugin_info_visitor_cpptoc.cc
web_plugin_unstable_callback_cpptoc.cc
write_handler_cpptoc.cc
translator_test_ref_ptr_client_child_cpptoc.cc
translator_test_ref_ptr_client_cpptoc.cc
translator_test_scoped_client_child_cpptoc.cc
translator_test_scoped_client_cpptoc.cc
browser_view_delegate_cpptoc.cc
button_delegate_cpptoc.cc
menu_button_delegate_cpptoc.cc
panel_delegate_cpptoc.cc
textfield_delegate_cpptoc.cc
view_delegate_cpptoc.cc
window_delegate_cpptoc.cc
auth_callback_ctocpp.cc
before_download_callback_ctocpp.cc
binary_value_ctocpp.cc
browser_ctocpp.cc
browser_host_ctocpp.cc
callback_ctocpp.cc
command_line_ctocpp.cc
context_menu_params_ctocpp.cc
cookie_manager_ctocpp.cc
dictionary_value_ctocpp.cc
domdocument_ctocpp.cc
domnode_ctocpp.cc
download_item_callback_ctocpp.cc
download_item_ctocpp.cc
drag_data_ctocpp.cc
extension_ctocpp.cc
file_dialog_callback_ctocpp.cc
frame_ctocpp.cc
get_extension_resource_callback_ctocpp.cc
image_ctocpp.cc
jsdialog_callback_ctocpp.cc
list_value_ctocpp.cc
media_route_ctocpp.cc
media_router_ctocpp.cc
media_sink_ctocpp.cc
media_source_ctocpp.cc
menu_model_ctocpp.cc
navigation_entry_ctocpp.cc
post_data_ctocpp.cc
post_data_element_ctocpp.cc
print_dialog_callback_ctocpp.cc
print_job_callback_ctocpp.cc
print_settings_ctocpp.cc
process_message_ctocpp.cc
registration_ctocpp.cc
request_callback_ctocpp.cc
request_context_ctocpp.cc
request_ctocpp.cc
resource_bundle_ctocpp.cc
resource_read_callback_ctocpp.cc
resource_skip_callback_ctocpp.cc
response_ctocpp.cc
run_context_menu_callback_ctocpp.cc
scheme_registrar_ctocpp.cc
select_client_certificate_callback_ctocpp.cc
server_ctocpp.cc
sslinfo_ctocpp.cc
sslstatus_ctocpp.cc
stream_reader_ctocpp.cc
stream_writer_ctocpp.cc
task_runner_ctocpp.cc
thread_ctocpp.cc
urlrequest_ctocpp.cc
v8context_ctocpp.cc
v8exception_ctocpp.cc
v8stack_frame_ctocpp.cc
v8stack_trace_ctocpp.cc
v8value_ctocpp.cc
value_ctocpp.cc
waitable_event_ctocpp.cc
web_plugin_info_ctocpp.cc
x509cert_principal_ctocpp.cc
x509certificate_ctocpp.cc
xml_reader_ctocpp.cc
zip_reader_ctocpp.cc
translator_test_ctocpp.cc
translator_test_ref_ptr_library_child_child_ctocpp.cc
translator_test_ref_ptr_library_child_ctocpp.cc
translator_test_ref_ptr_library_ctocpp.cc
translator_test_scoped_library_child_child_ctocpp.cc
translator_test_scoped_library_child_ctocpp.cc
translator_test_scoped_library_ctocpp.cc
box_layout_ctocpp.cc
browser_view_ctocpp.cc
button_ctocpp.cc
display_ctocpp.cc
fill_layout_ctocpp.cc
label_button_ctocpp.cc
layout_ctocpp.cc
menu_button_ctocpp.cc
menu_button_pressed_lock_ctocpp.cc
panel_ctocpp.cc
scroll_view_ctocpp.cc
textfield_ctocpp.cc
view_ctocpp.cc
window_ctocpp.cc
cef_byte_read_handler.cc
cef_closure_task.cc
cef_message_router.cc
cef_resource_manager.cc
cef_scoped_temp_dir.cc
cef_stream_resource_handler.cc
cef_xml_object.cc
cef_zip_archive.cc
libcef_dll_wrapper.cc
libcef_dll_wrapper2.cc
libcef_dll_wrapper.vcxproj -> C:\repo\opensource\QCefWidget\build\dep\cef_binary_89.0.18+gb36241d+chromium-89.0.4389.114_windows32\libcef_dll\Debu
g\libcef_dll_wrapper.lib
Building Custom Rule C:/repo/opensource/QCefWidget/src/QCefWing/CMakeLists.txt
QCefRenderApp.cpp
QCefClient.cpp
QCefDefaultRenderDelegate.cpp
QCefWing.cpp
正在生成代码...
libcef_dll_wrapper.lib(read_handler_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_get_min_log_level [C:\repo\opensource\QCefWidget\build\src\QCefWing\Q
CefWing.vcxproj]
libcef_dll_wrapper.lib(menu_model_delegate_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_get_min_log_level [C:\repo\opensource\QCefWidget\build\src\QCe
fWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(cookie_access_filter_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_get_min_log_level [C:\repo\opensource\QCefWidget\build\src\QC
efWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(response_filter_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_get_min_log_level [C:\repo\opensource\QCefWidget\build\src\QCefWin
g\QCefWing.vcxproj]
libcef_dll_wrapper.lib(media_sink_device_info_callback_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_get_min_log_level [C:\repo\opensource\QCefWidget\b
uild\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(set_cookie_callback_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_get_min_log_level [C:\repo\opensource\QCefWidget\build\src\QCe
fWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(media_observer_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_get_min_log_level [C:\repo\opensource\QCefWidget\build\src\QCefWing
\QCefWing.vcxproj]
libcef_dll_wrapper.lib(media_route_create_callback_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_get_min_log_level [C:\repo\opensource\QCefWidget\build
\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(write_handler_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_get_min_log_level [C:\repo\opensource\QCefWidget\build\src\QCefWing
QCefWing.vcxproj]
libcef_dll_wrapper.lib(accessibility_handler_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_get_min_log_level [C:\repo\opensource\QCefWidget\build\src\Q
CefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(resource_request_handler_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_get_min_log_level [C:\repo\opensource\QCefWidget\build\sr
c\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(cookie_visitor_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_get_min_log_level [C:\repo\opensource\QCefWidget\build\src\QCefWing
\QCefWing.vcxproj]
libcef_dll_wrapper.lib(delete_cookies_callback_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_get_min_log_level [C:\repo\opensource\QCefWidget\build\src
\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(request_handler_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_get_min_log_level [C:\repo\opensource\QCefWidget\build\src\QCefWin
g\QCefWing.vcxproj]
libcef_dll_wrapper.lib(extension_handler_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_get_min_log_level [C:\repo\opensource\QCefWidget\build\src\QCefW
ing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(request_context_handler_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_get_min_log_level [C:\repo\opensource\QCefWidget\build\src
\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(resolve_callback_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_get_min_log_level [C:\repo\opensource\QCefWidget\build\src\QCefWi
ng\QCefWing.vcxproj]
libcef_dll_wrapper.lib(jsdialog_handler_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_get_min_log_level [C:\repo\opensource\QCefWidget\build\src\QCefWi
ng\QCefWing.vcxproj]
libcef_dll_wrapper.lib(keyboard_handler_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_get_min_log_level [C:\repo\opensource\QCefWidget\build\src\QCefWi
ng\QCefWing.vcxproj]
libcef_dll_wrapper.lib(life_span_handler_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_get_min_log_level [C:\repo\opensource\QCefWidget\build\src\QCefW
ing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(render_handler_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_get_min_log_level [C:\repo\opensource\QCefWidget\build\src\QCefWing
\QCefWing.vcxproj]
libcef_dll_wrapper.lib(download_handler_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_get_min_log_level [C:\repo\opensource\QCefWidget\build\src\QCefWi
ng\QCefWing.vcxproj]
libcef_dll_wrapper.lib(drag_handler_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_get_min_log_level [C:\repo\opensource\QCefWidget\build\src\QCefWing\Q
CefWing.vcxproj]
libcef_dll_wrapper.lib(find_handler_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_get_min_log_level [C:\repo\opensource\QCefWidget\build\src\QCefWing\Q
CefWing.vcxproj]
libcef_dll_wrapper.lib(focus_handler_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_get_min_log_level [C:\repo\opensource\QCefWidget\build\src\QCefWing
QCefWing.vcxproj]
libcef_dll_wrapper.lib(audio_handler_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_get_min_log_level [C:\repo\opensource\QCefWidget\build\src\QCefWing
QCefWing.vcxproj]
libcef_dll_wrapper.lib(context_menu_handler_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_get_min_log_level [C:\repo\opensource\QCefWidget\build\src\QC
efWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(dialog_handler_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_get_min_log_level [C:\repo\opensource\QCefWidget\build\src\QCefWing
\QCefWing.vcxproj]
libcef_dll_wrapper.lib(display_handler_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_get_min_log_level [C:\repo\opensource\QCefWidget\build\src\QCefWin
g\QCefWing.vcxproj]
libcef_dll_wrapper.lib(download_image_callback_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_get_min_log_level [C:\repo\opensource\QCefWidget\build\src
\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(navigation_entry_visitor_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_get_min_log_level [C:\repo\opensource\QCefWidget\build\sr
c\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(pdf_print_callback_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_get_min_log_level [C:\repo\opensource\QCefWidget\build\src\QCef
Wing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(run_file_dialog_callback_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_get_min_log_level [C:\repo\opensource\QCefWidget\build\sr
c\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(client_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_get_min_log_level [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWin
g.vcxproj]
libcef_dll_wrapper.lib(print_handler_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_get_min_log_level [C:\repo\opensource\QCefWidget\build\src\QCefWing
QCefWing.vcxproj]
libcef_dll_wrapper.lib(load_handler_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_get_min_log_level [C:\repo\opensource\QCefWidget\build\src\QCefWing\Q
CefWing.vcxproj]
libcef_dll_wrapper.lib(dev_tools_message_observer_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_get_min_log_level [C:\repo\opensource\QCefWidget\build
src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(resource_handler_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_get_min_log_level [C:\repo\opensource\QCefWidget\build\src\QCefWi
ng\QCefWing.vcxproj]
libcef_dll_wrapper.lib(domvisitor_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_get_min_log_level [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCe
fWing.vcxproj]
libcef_dll_wrapper.lib(string_visitor_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_get_min_log_level [C:\repo\opensource\QCefWidget\build\src\QCefWing
\QCefWing.vcxproj]
libcef_dll_wrapper.lib(urlrequest_client_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_get_min_log_level [C:\repo\opensource\QCefWidget\build\src\QCefW
ing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(cef_callback_internal.obj) : error LNK2001: 无法解析的外部符号 cef_get_min_log_level [C:\repo\opensource\QCefWidget\build\src\QCefWing
\QCefWing.vcxproj]
libcef_dll_wrapper.lib(browser_process_handler_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_get_min_log_level [C:\repo\opensource\QCefWidget\build\src
\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(render_process_handler_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_get_min_log_level [C:\repo\opensource\QCefWidget\build\src
QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(resource_bundle_handler_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_get_min_log_level [C:\repo\opensource\QCefWidget\build\src
\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(web_plugin_unstable_callback_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_get_min_log_level [C:\repo\opensource\QCefWidget\buil
d\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(v8accessor_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_get_min_log_level [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCe
fWing.vcxproj]
libcef_dll_wrapper.lib(v8array_buffer_release_callback_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_get_min_log_level [C:\repo\opensource\QCefWidget\b
uild\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(v8interceptor_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_get_min_log_level [C:\repo\opensource\QCefWidget\build\src\QCefWing
QCefWing.vcxproj]
libcef_dll_wrapper.lib(scheme_handler_factory_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_get_min_log_level [C:\repo\opensource\QCefWidget\build\src
QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(task_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_get_min_log_level [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.
vcxproj]
libcef_dll_wrapper.lib(v8handler_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_get_min_log_level [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCef
Wing.vcxproj]
libcef_dll_wrapper.lib(web_plugin_info_visitor_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_get_min_log_level [C:\repo\opensource\QCefWidget\build\src
\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(app_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_get_min_log_level [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.v
cxproj]
libcef_dll_wrapper.lib(completion_callback_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_get_min_log_level [C:\repo\opensource\QCefWidget\build\src\QCe
fWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(end_tracing_callback_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_get_min_log_level [C:\repo\opensource\QCefWidget\build\src\QC
efWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(register_cdm_callback_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_get_min_log_level [C:\repo\opensource\QCefWidget\build\src\Q
CefWing\QCefWing.vcxproj]
QCefRenderApp.obj : error LNK2001: 无法解析的外部符号 cef_get_min_log_level [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
QCefClient.obj : error LNK2001: 无法解析的外部符号 cef_get_min_log_level [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
QCefDefaultRenderDelegate.obj : error LNK2001: 无法解析的外部符号 cef_get_min_log_level [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(cef_message_router.obj) : error LNK2001: 无法解析的外部符号 cef_get_min_log_level [C:\repo\opensource\QCefWidget\build\src\QCefWing\QC
efWing.vcxproj]
libcef_dll_wrapper.lib(x509cert_principal_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_set [C:\repo\opensource\QCefWidget\build\src\QCefW
ing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(media_route_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_set [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCe
fWing.vcxproj]
libcef_dll_wrapper.lib(media_sink_device_info_callback_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_set [C:\repo\opensource\QCefWidget\bu
ild\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(cookie_visitor_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_set [C:\repo\opensource\QCefWidget\build\src\QCefWing
QCefWing.vcxproj]
libcef_dll_wrapper.lib(media_sink_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_set [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCef
Wing.vcxproj]
libcef_dll_wrapper.lib(media_source_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_set [C:\repo\opensource\QCefWidget\build\src\QCefWing\QC
efWing.vcxproj]
libcef_dll_wrapper.lib(cookie_access_filter_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_set [C:\repo\opensource\QCefWidget\build\src\QCe
fWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(post_data_element_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_set [C:\repo\opensource\QCefWidget\build\src\QCefWi
ng\QCefWing.vcxproj]
libcef_dll_wrapper.lib(context_menu_params_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_set [C:\repo\opensource\QCefWidget\build\src\QCef
Wing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(menu_model_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_set [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCef
Wing.vcxproj]
libcef_dll_wrapper.lib(download_item_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_set [C:\repo\opensource\QCefWidget\build\src\QCefWing\Q
CefWing.vcxproj]
libcef_dll_wrapper.lib(extension_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_set [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefW
ing.vcxproj]
libcef_dll_wrapper.lib(navigation_entry_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_set [C:\repo\opensource\QCefWidget\build\src\QCefWin
g\QCefWing.vcxproj]
libcef_dll_wrapper.lib(print_settings_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_set [C:\repo\opensource\QCefWidget\build\src\QCefWing
QCefWing.vcxproj]
libcef_dll_wrapper.lib(v8stack_frame_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_set [C:\repo\opensource\QCefWidget\build\src\QCefWing\Q
CefWing.vcxproj]
libcef_dll_wrapper.lib(response_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_set [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWi
ng.vcxproj]
libcef_dll_wrapper.lib(domdocument_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_set [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCe
fWing.vcxproj]
libcef_dll_wrapper.lib(request_context_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_set [C:\repo\opensource\QCefWidget\build\src\QCefWing
\QCefWing.vcxproj]
libcef_dll_wrapper.lib(drag_data_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_set [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefW
ing.vcxproj]
libcef_dll_wrapper.lib(request_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_set [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWin
g.vcxproj]
libcef_dll_wrapper.lib(web_plugin_info_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_set [C:\repo\opensource\QCefWidget\build\src\QCefWing
\QCefWing.vcxproj]
libcef_dll_wrapper.lib(dictionary_value_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_set [C:\repo\opensource\QCefWidget\build\src\QCefWin
g\QCefWing.vcxproj]
libcef_dll_wrapper.lib(domnode_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_set [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWin
g.vcxproj]
libcef_dll_wrapper.lib(value_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_set [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.
vcxproj]
libcef_dll_wrapper.lib(transfer_util.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_set [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing
.vcxproj]
libcef_dll_wrapper.lib(list_value_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_set [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCef
Wing.vcxproj]
libcef_dll_wrapper.lib(v8exception_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_set [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCe
fWing.vcxproj]
libcef_dll_wrapper.lib(v8value_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_set [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWin
g.vcxproj]
libcef_dll_wrapper.lib(cef_message_router.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_set [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCe
fWing.vcxproj]
libcef_dll_wrapper.lib(command_line_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_set [C:\repo\opensource\QCefWidget\build\src\QCefWing\QC
efWing.vcxproj]
libcef_dll_wrapper.lib(frame_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_set [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.
vcxproj]
QCefClient.obj : error LNK2001: 无法解析的外部符号 cef_string_utf16_set [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
QCefDefaultRenderDelegate.obj : error LNK2001: 无法解析的外部符号 cef_string_utf16_set [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(libcef_dll_wrapper.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_set [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCe
fWing.vcxproj]
libcef_dll_wrapper.lib(process_message_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_set [C:\repo\opensource\QCefWidget\build\src\QCefWing
\QCefWing.vcxproj]
libcef_dll_wrapper.lib(media_sink_device_info_callback_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_clear [C:\repo\opensource\QCefWidget
build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(menu_model_delegate_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_clear [C:\repo\opensource\QCefWidget\build\src\QC
efWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(cookie_access_filter_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_clear [C:\repo\opensource\QCefWidget\build\src\Q
CefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(x509cert_principal_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_clear [C:\repo\opensource\QCefWidget\build\src\QCe
fWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(media_route_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_clear [C:\repo\opensource\QCefWidget\build\src\QCefWing\Q
CefWing.vcxproj]
libcef_dll_wrapper.lib(cookie_visitor_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_clear [C:\repo\opensource\QCefWidget\build\src\QCefWin
g\QCefWing.vcxproj]
libcef_dll_wrapper.lib(media_route_create_callback_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_clear [C:\repo\opensource\QCefWidget\buil
d\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(media_sink_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_clear [C:\repo\opensource\QCefWidget\build\src\QCefWing\QC
efWing.vcxproj]
libcef_dll_wrapper.lib(media_source_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_clear [C:\repo\opensource\QCefWidget\build\src\QCefWing
QCefWing.vcxproj]
libcef_dll_wrapper.lib(context_menu_params_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_clear [C:\repo\opensource\QCefWidget\build\src\QC
efWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(menu_model_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_clear [C:\repo\opensource\QCefWidget\build\src\QCefWing\QC
efWing.vcxproj]
libcef_dll_wrapper.lib(download_item_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_clear [C:\repo\opensource\QCefWidget\build\src\QCefWing
\QCefWing.vcxproj]
libcef_dll_wrapper.lib(resource_request_handler_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_clear [C:\repo\opensource\QCefWidget\build\s
rc\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(v8stack_frame_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_clear [C:\repo\opensource\QCefWidget\build\src\QCefWing
\QCefWing.vcxproj]
libcef_dll_wrapper.lib(post_data_element_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_clear [C:\repo\opensource\QCefWidget\build\src\QCef
Wing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(extension_handler_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_clear [C:\repo\opensource\QCefWidget\build\src\QCef
Wing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(request_context_handler_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_clear [C:\repo\opensource\QCefWidget\build\sr
c\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(life_span_handler_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_clear [C:\repo\opensource\QCefWidget\build\src\QCef
Wing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(render_handler_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_clear [C:\repo\opensource\QCefWidget\build\src\QCefWin
g\QCefWing.vcxproj]
libcef_dll_wrapper.lib(request_handler_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_clear [C:\repo\opensource\QCefWidget\build\src\QCefWi
ng\QCefWing.vcxproj]
libcef_dll_wrapper.lib(print_settings_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_clear [C:\repo\opensource\QCefWidget\build\src\QCefWin
g\QCefWing.vcxproj]
libcef_dll_wrapper.lib(dialog_handler_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_clear [C:\repo\opensource\QCefWidget\build\src\QCefWin
g\QCefWing.vcxproj]
libcef_dll_wrapper.lib(display_handler_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_clear [C:\repo\opensource\QCefWidget\build\src\QCefWi
ng\QCefWing.vcxproj]
libcef_dll_wrapper.lib(download_handler_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_clear [C:\repo\opensource\QCefWidget\build\src\QCefW
ing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(jsdialog_handler_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_clear [C:\repo\opensource\QCefWidget\build\src\QCefW
ing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(drag_data_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_clear [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCe
fWing.vcxproj]
libcef_dll_wrapper.lib(extension_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_clear [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCe
fWing.vcxproj]
libcef_dll_wrapper.lib(navigation_entry_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_clear [C:\repo\opensource\QCefWidget\build\src\QCefW
ing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(audio_handler_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_clear [C:\repo\opensource\QCefWidget\build\src\QCefWing
\QCefWing.vcxproj]
libcef_dll_wrapper.lib(request_context_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_clear [C:\repo\opensource\QCefWidget\build\src\QCefWi
ng\QCefWing.vcxproj]
libcef_dll_wrapper.lib(dev_tools_message_observer_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_clear [C:\repo\opensource\QCefWidget\build
\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(download_image_callback_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_clear [C:\repo\opensource\QCefWidget\build\sr
c\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(pdf_print_callback_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_clear [C:\repo\opensource\QCefWidget\build\src\QCe
fWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(load_handler_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_clear [C:\repo\opensource\QCefWidget\build\src\QCefWing
QCefWing.vcxproj]
libcef_dll_wrapper.lib(domnode_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_clear [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefW
ing.vcxproj]
libcef_dll_wrapper.lib(response_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_clear [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCef
Wing.vcxproj]
libcef_dll_wrapper.lib(domdocument_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_clear [C:\repo\opensource\QCefWidget\build\src\QCefWing\Q
CefWing.vcxproj]
libcef_dll_wrapper.lib(string_visitor_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_clear [C:\repo\opensource\QCefWidget\build\src\QCefWin
g\QCefWing.vcxproj]
libcef_dll_wrapper.lib(urlrequest_client_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_clear [C:\repo\opensource\QCefWidget\build\src\QCef
Wing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(dictionary_value_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_clear [C:\repo\opensource\QCefWidget\build\src\QCefW
ing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(print_handler_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_clear [C:\repo\opensource\QCefWidget\build\src\QCefWing
\QCefWing.vcxproj]
libcef_dll_wrapper.lib(resource_bundle_handler_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_clear [C:\repo\opensource\QCefWidget\build\sr
c\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(resource_handler_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_clear [C:\repo\opensource\QCefWidget\build\src\QCefW
ing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(request_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_clear [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefW
ing.vcxproj]
libcef_dll_wrapper.lib(web_plugin_info_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_clear [C:\repo\opensource\QCefWidget\build\src\QCefWi
ng\QCefWing.vcxproj]
libcef_dll_wrapper.lib(list_value_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_clear [C:\repo\opensource\QCefWidget\build\src\QCefWing\QC
efWing.vcxproj]
libcef_dll_wrapper.lib(v8exception_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_clear [C:\repo\opensource\QCefWidget\build\src\QCefWing\Q
CefWing.vcxproj]
libcef_dll_wrapper.lib(v8accessor_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_clear [C:\repo\opensource\QCefWidget\build\src\QCefWing\QC
efWing.vcxproj]
libcef_dll_wrapper.lib(v8interceptor_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_clear [C:\repo\opensource\QCefWidget\build\src\QCefWing
\QCefWing.vcxproj]
libcef_dll_wrapper.lib(command_line_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_clear [C:\repo\opensource\QCefWidget\build\src\QCefWing
QCefWing.vcxproj]
libcef_dll_wrapper.lib(frame_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_clear [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWin
g.vcxproj]
libcef_dll_wrapper.lib(value_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_clear [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWin
g.vcxproj]
libcef_dll_wrapper.lib(transfer_util.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_clear [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWi
ng.vcxproj]
libcef_dll_wrapper.lib(register_cdm_callback_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_clear [C:\repo\opensource\QCefWidget\build\src
QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(scheme_handler_factory_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_clear [C:\repo\opensource\QCefWidget\build\src
\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(v8handler_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_clear [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCe
fWing.vcxproj]
libcef_dll_wrapper.lib(web_plugin_unstable_callback_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_clear [C:\repo\opensource\QCefWidget\bui
ld\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(v8value_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_clear [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefW
ing.vcxproj]
libcef_dll_wrapper.lib(cef_message_router.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_clear [C:\repo\opensource\QCefWidget\build\src\QCefWing\Q
CefWing.vcxproj]
libcef_dll_wrapper.lib(app_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_clear [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.
vcxproj]
libcef_dll_wrapper.lib(end_tracing_callback_cpptoc.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_clear [C:\repo\opensource\QCefWidget\build\src\Q
CefWing\QCefWing.vcxproj]
QCefClient.obj : error LNK2001: 无法解析的外部符号 cef_string_utf16_clear [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
QCefDefaultRenderDelegate.obj : error LNK2001: 无法解析的外部符号 cef_string_utf16_clear [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(libcef_dll_wrapper.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_clear [C:\repo\opensource\QCefWidget\build\src\QCefWing\Q
CefWing.vcxproj]
libcef_dll_wrapper.lib(process_message_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_clear [C:\repo\opensource\QCefWidget\build\src\QCefWi
ng\QCefWing.vcxproj]
QCefClient.obj : error LNK2019: 无法解析的外部符号 cef_string_utf16_cmp,函数 "public: static int __cdecl CefStringTraitsUTF16::compare(struct _cef_string_utf16
_t const *,struct _cef_string_utf16_t const *)" (?compare@CefStringTraitsUTF16@@SAHPEBU_cef_string_utf16_t@@0@Z) 中引用了该符号 [C:\repo\opensource\QCefWid
get\build\src\QCefWing\QCefWing.vcxproj]
QCefDefaultRenderDelegate.obj : error LNK2001: 无法解析的外部符号 cef_string_utf16_cmp [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(cef_message_router.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_cmp [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCe
fWing.vcxproj]
libcef_dll_wrapper.lib(transfer_util.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf16_cmp [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing
.vcxproj]
QCefClient.obj : error LNK2019: 无法解析的外部符号 cef_string_utf8_to_utf16,函数 "public: static bool __cdecl CefStringTraitsUTF16::from_string(class std::basi
c_string<char,struct std::char_traits,class std::allocator > const &,struct _cef_string_utf16_t *)" (?from_string@CefStringTraitsUTF16@@
SA_NAEBV?$basic_string@DU?$char_traits@D@std@@v?$allocator@D@2@@std@@PEAU_cef_string_utf16_t@@@z) 中引用了该符号 [C:\repo\opensource\QCefWidget\build\src\Q
CefWing\QCefWing.vcxproj]
QCefDefaultRenderDelegate.obj : error LNK2001: 无法解析的外部符号 cef_string_utf8_to_utf16 [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj
]
libcef_dll_wrapper.lib(cef_message_router.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf8_to_utf16 [C:\repo\opensource\QCefWidget\build\src\QCefWing
\QCefWing.vcxproj]
libcef_dll_wrapper.lib(cef_logging.obj) : error LNK2019: 无法解析的外部符号 cef_log,函数 "public: __cdecl cef::logging::LogMessage::~LogMessage(void)" (??1LogM
essage@logging@cef@@qeaa@XZ) 中引用了该符号 [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(cef_logging.obj) : error LNK2019: 无法解析的外部符号 cef_string_utf8_clear,函数 "class std::basic_ostream<char,struct std::char_traits > & __cdecl operator<<(class std::basic_ostream<char,struct std::char_traits > &,wchar_t const *)" (??6@YAAEAV?$basic_ostream@DU?$char_tr
aits@D@std@@@std@@AEAV01@PEB_W@Z) 中引用了该符号 [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(cef_message_router.obj) : error LNK2001: 无法解析的外部符号 cef_string_utf8_clear [C:\repo\opensource\QCefWidget\build\src\QCefWing\QC
efWing.vcxproj]
libcef_dll_wrapper.lib(cef_logging.obj) : error LNK2019: 无法解析的外部符号 cef_string_wide_to_utf8,函数 "class std::basic_ostream<char,struct std::char_traits
> & _cdecl operator<<(class std::basic_ostream<char,struct std::char_traits > &,wchar_t const *)" (??6@YAAEAV?$basic_ostream@DU?$char
traits@D@std@@@std@@AEAV01@PEB_W@Z) 中引用了该符号 [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(media_sink_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_userfree_utf16_free [C:\repo\opensource\QCefWidget\build\src\QCe
fWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(media_source_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_userfree_utf16_free [C:\repo\opensource\QCefWidget\build\src\Q
CefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(x509cert_principal_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_userfree_utf16_free [C:\repo\opensource\QCefWidget\build
\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(media_route_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_userfree_utf16_free [C:\repo\opensource\QCefWidget\build\src\QC
efWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(post_data_element_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_userfree_utf16_free [C:\repo\opensource\QCefWidget\build
src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(context_menu_params_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_userfree_utf16_free [C:\repo\opensource\QCefWidget\buil
d\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(menu_model_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_userfree_utf16_free [C:\repo\opensource\QCefWidget\build\src\QCe
fWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(download_item_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_userfree_utf16_free [C:\repo\opensource\QCefWidget\build\src
QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(extension_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_userfree_utf16_free [C:\repo\opensource\QCefWidget\build\src\QCef
Wing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(navigation_entry_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_userfree_utf16_free [C:\repo\opensource\QCefWidget\build\s
rc\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(print_settings_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_userfree_utf16_free [C:\repo\opensource\QCefWidget\build\src
\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(v8stack_frame_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_userfree_utf16_free [C:\repo\opensource\QCefWidget\build\src
QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(response_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_userfree_utf16_free [C:\repo\opensource\QCefWidget\build\src\QCefW
ing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(domdocument_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_userfree_utf16_free [C:\repo\opensource\QCefWidget\build\src\QC
efWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(request_context_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_userfree_utf16_free [C:\repo\opensource\QCefWidget\build\sr
c\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(drag_data_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_userfree_utf16_free [C:\repo\opensource\QCefWidget\build\src\QCef
Wing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(request_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_userfree_utf16_free [C:\repo\opensource\QCefWidget\build\src\QCefWi
ng\QCefWing.vcxproj]
libcef_dll_wrapper.lib(web_plugin_info_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_userfree_utf16_free [C:\repo\opensource\QCefWidget\build\sr
c\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(dictionary_value_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_userfree_utf16_free [C:\repo\opensource\QCefWidget\build\s
rc\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(domnode_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_userfree_utf16_free [C:\repo\opensource\QCefWidget\build\src\QCefWi
ng\QCefWing.vcxproj]
libcef_dll_wrapper.lib(frame_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_userfree_utf16_free [C:\repo\opensource\QCefWidget\build\src\QCefWing
\QCefWing.vcxproj]
libcef_dll_wrapper.lib(value_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_userfree_utf16_free [C:\repo\opensource\QCefWidget\build\src\QCefWing
\QCefWing.vcxproj]
libcef_dll_wrapper.lib(list_value_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_userfree_utf16_free [C:\repo\opensource\QCefWidget\build\src\QCe
fWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(v8exception_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_userfree_utf16_free [C:\repo\opensource\QCefWidget\build\src\QC
efWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(libcef_dll_wrapper.obj) : error LNK2001: 无法解析的外部符号 cef_string_userfree_utf16_free [C:\repo\opensource\QCefWidget\build\src\QC
efWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(process_message_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_userfree_utf16_free [C:\repo\opensource\QCefWidget\build\sr
c\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(v8value_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_userfree_utf16_free [C:\repo\opensource\QCefWidget\build\src\QCefWi
ng\QCefWing.vcxproj]
libcef_dll_wrapper.lib(command_line_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_userfree_utf16_free [C:\repo\opensource\QCefWidget\build\src\Q
CefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(cookie_manager_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_list_alloc [C:\repo\opensource\QCefWidget\build\src\QCefWing
\QCefWing.vcxproj]
libcef_dll_wrapper.lib(context_menu_params_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_list_alloc [C:\repo\opensource\QCefWidget\build\src\QCe
fWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(file_dialog_callback_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_list_alloc [C:\repo\opensource\QCefWidget\build\src\QC
efWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(x509cert_principal_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_list_alloc [C:\repo\opensource\QCefWidget\build\src\QCef
Wing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(dictionary_value_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_list_alloc [C:\repo\opensource\QCefWidget\build\src\QCefWi
ng\QCefWing.vcxproj]
libcef_dll_wrapper.lib(browser_host_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_list_alloc [C:\repo\opensource\QCefWidget\build\src\QCefWing\Q
CefWing.vcxproj]
libcef_dll_wrapper.lib(request_context_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_list_alloc [C:\repo\opensource\QCefWidget\build\src\QCefWin
g\QCefWing.vcxproj]
libcef_dll_wrapper.lib(drag_data_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_list_alloc [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCef
Wing.vcxproj]
libcef_dll_wrapper.lib(libcef_dll_wrapper.obj) : error LNK2001: 无法解析的外部符号 cef_string_list_alloc [C:\repo\opensource\QCefWidget\build\src\QCefWing\QC
efWing.vcxproj]
libcef_dll_wrapper.lib(v8value_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_list_alloc [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWi
ng.vcxproj]
libcef_dll_wrapper.lib(command_line_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_list_alloc [C:\repo\opensource\QCefWidget\build\src\QCefWing\Q
CefWing.vcxproj]
libcef_dll_wrapper.lib(browser_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_list_alloc [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWi
ng.vcxproj]
libcef_dll_wrapper.lib(cookie_manager_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_list_free [C:\repo\opensource\QCefWidget\build\src\QCefWing
QCefWing.vcxproj]
libcef_dll_wrapper.lib(context_menu_params_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_list_free [C:\repo\opensource\QCefWidget\build\src\QCef
Wing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(file_dialog_callback_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_list_free [C:\repo\opensource\QCefWidget\build\src\QCe
fWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(x509cert_principal_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_list_free [C:\repo\opensource\QCefWidget\build\src\QCefW
ing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(dictionary_value_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_list_free [C:\repo\opensource\QCefWidget\build\src\QCefWin
g\QCefWing.vcxproj]
libcef_dll_wrapper.lib(browser_host_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_list_free [C:\repo\opensource\QCefWidget\build\src\QCefWing\QC
efWing.vcxproj]
libcef_dll_wrapper.lib(request_context_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_list_free [C:\repo\opensource\QCefWidget\build\src\QCefWing
\QCefWing.vcxproj]
libcef_dll_wrapper.lib(drag_data_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_list_free [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefW
ing.vcxproj]
libcef_dll_wrapper.lib(libcef_dll_wrapper.obj) : error LNK2001: 无法解析的外部符号 cef_string_list_free [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCe
fWing.vcxproj]
libcef_dll_wrapper.lib(v8value_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_list_free [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWin
g.vcxproj]
libcef_dll_wrapper.lib(command_line_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_list_free [C:\repo\opensource\QCefWidget\build\src\QCefWing\QC
efWing.vcxproj]
libcef_dll_wrapper.lib(browser_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_list_free [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWin
g.vcxproj]
libcef_dll_wrapper.lib(libcef_dll_wrapper.obj) : error LNK2019: 无法解析的外部符号 cef_is_cert_status_error,函数 "bool __cdecl CefIsCertStatusError(enum cef_ce
rt_status_t)" (?CefIsCertStatusError@@YA_NW4cef_cert_status_t@@@z) 中引用了该符号 [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(libcef_dll_wrapper.obj) : error LNK2019: 无法解析的外部符号 cef_currently_on,函数 "bool __cdecl CefCurrentlyOn(enum cef_thread_id_t)" (?
CefCurrentlyOn@@YA_NW4cef_thread_id_t@@@z) 中引用了该符号 [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(libcef_dll_wrapper.obj) : error LNK2019: 无法解析的外部符号 cef_post_task,函数 "bool __cdecl CefPostTask(enum cef_thread_id_t,class scop
ed_refptr)" (?CefPostTask@@YA_NW4cef_thread_id_t@@v?$scoped_refptr@VCefTask@@@@@z) 中引用了该符号 [C:\repo\opensource\QCefWidget\build\src\Q
CefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(libcef_dll_wrapper.obj) : error LNK2019: 无法解析的外部符号 cef_post_delayed_task,函数 "bool _cdecl CefPostDelayedTask(enum cef_thread
id_t,class scoped_refptr,__int64)" (?CefPostDelayedTask@@YA_NW4cef_thread_id_t@@v?$scoped_refptr@VCefTask@@@@_J@Z) 中引用了该符号 [C:\repo\o
pensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(libcef_dll_wrapper.obj) : error LNK2019: 无法解析的外部符号 cef_register_extension,函数 "bool __cdecl CefRegisterExtension(class CefStri
ngBase const &,class CefStringBase const &,class scoped_refptr)" (?Cef
RegisterExtension@@YA_NAEBV?$CefStringBase@UCefStringTraitsUTF16@@@@0V?$scoped_refptr@VCefV8Handler@@@@@z) 中引用了该符号 [C:\repo\opensource\QCefWidget\bu
ild\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(libcef_dll_wrapper.obj) : error LNK2019: 无法解析的外部符号 cef_register_scheme_handler_factory,函数 "bool __cdecl CefRegisterSchemeHand
lerFactory(class CefStringBase const &,class CefStringBase const &,class scoped_refptr)" (?CefRegisterSchemeHandlerFactory@@YA_NAEBV?$CefStringBase@UCefStringTraitsUTF16@@@@0V?$scoped_refptr@VCefSchemeHandle
rFactory@@@@@z) 中引用了该符号 [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(libcef_dll_wrapper.obj) : error LNK2019: 无法解析的外部符号 cef_clear_scheme_handler_factories,函数 "bool __cdecl CefClearSchemeHandlerF
actories(void)" (?CefClearSchemeHandlerFactories@@YA_NXZ) 中引用了该符号 [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(libcef_dll_wrapper.obj) : error LNK2019: 无法解析的外部符号 cef_execute_process,函数 "int __cdecl CefExecuteProcess(class CefMainArgs co
nst &,class scoped_refptr,void *)" (?CefExecuteProcess@@YAHAEBVCefMainArgs@@v?$scoped_refptr@VCefApp@@@@Peax@Z) 中引用了该符号 [C:\repo\opens
ource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(libcef_dll_wrapper.obj) : error LNK2019: 无法解析的外部符号 cef_initialize,函数 "bool __cdecl CefInitialize(class CefMainArgs const &,cl
ass CefStructBase const &,class scoped_refptr,void *)" (?CefInitialize@@YA_NAEBVCefMainArgs@@aebv?$CefStruct
Base@UCefSettingsTraits@@@@v?$scoped_refptr@VCefApp@@@@Peax@Z) 中引用了该符号 [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(libcef_dll_wrapper.obj) : error LNK2019: 无法解析的外部符号 cef_shutdown,函数 "void __cdecl CefShutdown(void)" (?CefShutdown@@yaxxz) 中引用
了该符号 [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(libcef_dll_wrapper.obj) : error LNK2019: 无法解析的外部符号 cef_do_message_loop_work,函数 "void __cdecl CefDoMessageLoopWork(void)" (?Ce
fDoMessageLoopWork@@yaxxz) 中引用了该符号 [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(libcef_dll_wrapper.obj) : error LNK2019: 无法解析的外部符号 cef_run_message_loop,函数 "void __cdecl CefRunMessageLoop(void)" (?CefRunMes
sageLoop@@yaxxz) 中引用了该符号 [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(libcef_dll_wrapper.obj) : error LNK2019: 无法解析的外部符号 cef_quit_message_loop,函数 "void __cdecl CefQuitMessageLoop(void)" (?CefQuit
MessageLoop@@yaxxz) 中引用了该符号 [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(libcef_dll_wrapper.obj) : error LNK2019: 无法解析的外部符号 cef_set_osmodal_loop,函数 "void __cdecl CefSetOSModalLoop(bool)" (?CefSetOSM
odalLoop@@YAX_N@Z) 中引用了该符号 [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(libcef_dll_wrapper.obj) : error LNK2019: 无法解析的外部符号 cef_enable_highdpi_support,函数 "void __cdecl CefEnableHighDPISupport(void)"
(?CefEnableHighDPISupport@@yaxxz) 中引用了该符号 [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(libcef_dll_wrapper.obj) : error LNK2019: 无法解析的外部符号 cef_crash_reporting_enabled,函数 "bool __cdecl CefCrashReportingEnabled(void
)" (?CefCrashReportingEnabled@@YA_NXZ) 中引用了该符号 [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(libcef_dll_wrapper.obj) : error LNK2019: 无法解析的外部符号 cef_set_crash_key_value,函数 "void __cdecl CefSetCrashKeyValue(class CefStri
ngBase const &,class CefStringBase const &)" (?CefSetCrashKeyValue@@YAXAEBV?$CefStringBase
@UCefStringTraitsUTF16@@@@0@Z) 中引用了该符号 [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(libcef_dll_wrapper.obj) : error LNK2019: 无法解析的外部符号 cef_create_directory,函数 "bool __cdecl CefCreateDirectory(class CefStringBa
se const &)" (?CefCreateDirectory@@YA_NAEBV?$CefStringBase@UCefStringTraitsUTF16@@@@@z) 中引用了该符号 [C:\repo\opensource\QCe
fWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(libcef_dll_wrapper.obj) : error LNK2019: 无法解析的外部符号 cef_get_temp_directory,函数 "bool __cdecl CefGetTempDirectory(class CefStrin
gBase &)" (?CefGetTempDirectory@@YA_NAEAV?$CefStringBase@UCefStringTraitsUTF16@@@@@z) 中引用了该符号 [C:\repo\opensource\QCefW
idget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(libcef_dll_wrapper.obj) : error LNK2019: 无法解析的外部符号 cef_create_new_temp_directory,函数 "bool __cdecl CefCreateNewTempDirectory(c
lass CefStringBase const &,class CefStringBase &)" (?CefCreateNewTempDirectory@@YA_NAEBV?$
CefStringBase@UCefStringTraitsUTF16@@@@AEAV1@@z) 中引用了该符号 [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(libcef_dll_wrapper.obj) : error LNK2019: 无法解析的外部符号 cef_create_temp_directory_in_directory,函数 "bool __cdecl CefCreateTempDirec
toryInDirectory(class CefStringBase const &,class CefStringBase const &,class CefStringBas
e &)" (?CefCreateTempDirectoryInDirectory@@YA_NAEBV?$CefStringBase@UCefStringTraitsUTF16@@@@0AEAV1@@z) 中引用了该符号 [C:\repo
\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(libcef_dll_wrapper.obj) : error LNK2019: 无法解析的外部符号 cef_directory_exists,函数 "bool __cdecl CefDirectoryExists(class CefStringBa
se const &)" (?CefDirectoryExists@@YA_NAEBV?$CefStringBase@UCefStringTraitsUTF16@@@@@z) 中引用了该符号 [C:\repo\opensource\QCe
fWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(libcef_dll_wrapper.obj) : error LNK2019: 无法解析的外部符号 cef_delete_file,函数 "bool __cdecl CefDeleteFile(class CefStringBase const &,bool)" (?CefDeleteFile@@YA_NAEBV?$CefStringBase@UCefStringTraitsUTF16@@@@_N@Z) 中引用了该符号 [C:\repo\opensource\QCefWidget
build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(libcef_dll_wrapper.obj) : error LNK2019: 无法解析的外部符号 cef_zip_directory,函数 "bool __cdecl CefZipDirectory(class CefStringBase const &,class CefStringBase const &,bool)" (?CefZipDirectory@@YA_NAEBV?$CefStringBase@UCefStr
ingTraitsUTF16@@@@0_N@Z) 中引用了该符号 [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(libcef_dll_wrapper.obj) : error LNK2019: 无法解析的外部符号 cef_load_crlsets_file,函数 "void __cdecl CefLoadCRLSetsFile(class CefStringB
ase const &)" (?CefLoadCRLSetsFile@@YAXAEBV?$CefStringBase@UCefStringTraitsUTF16@@@@@z) 中引用了该符号 [C:\repo\opensource\QCe
fWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(libcef_dll_wrapper.obj) : error LNK2019: 无法解析的外部符号 cef_add_cross_origin_whitelist_entry,函数 "bool __cdecl CefAddCrossOriginWhi
telistEntry(class CefStringBase const &,class CefStringBase const &,class CefStringBase const &,bool)" (?CefAddCrossOriginWhitelistEntry@@YA_NAEBV?$CefStringBase@UCefStringTraitsUTF16@@@@00_N@Z) 中引用了该符号 [C:\re
po\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(libcef_dll_wrapper.obj) : error LNK2019: 无法解析的外部符号 cef_remove_cross_origin_whitelist_entry,函数 "bool __cdecl CefRemoveCrossOri
ginWhitelistEntry(class CefStringBase const &,class CefStringBase const &,class CefStringB
ase const &,bool)" (?CefRemoveCrossOriginWhitelistEntry@@YA_NAEBV?$CefStringBase@UCefStringTraitsUTF16@@@@00_N@Z) 中引用了该
符号 [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(libcef_dll_wrapper.obj) : error LNK2019: 无法解析的外部符号 cef_clear_cross_origin_whitelist,函数 "bool __cdecl CefClearCrossOriginWhite
list(void)" (?CefClearCrossOriginWhitelist@@YA_NXZ) 中引用了该符号 [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(libcef_dll_wrapper.obj) : error LNK2019: 无法解析的外部符号 cef_parse_url,函数 "bool __cdecl CefParseURL(class CefStringBase const &,class CefStructBase &)" (?CefParseURL@@YA_NAEBV?$CefStringBase@UCefStringTraitsUTF16@@@@aeav?$Ce
fStructBase@UCefURLPartsTraits@@@@@z) 中引用了该符号 [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(libcef_dll_wrapper.obj) : error LNK2019: 无法解析的外部符号 cef_create_url,函数 "bool __cdecl CefCreateURL(class CefStructBase const &,class CefStringBase &)" (?CefCreateURL@@YA_NAEBV?$CefStructBase@UCefURLPartsTraits@@@@aeav?$Ce
fStringBase@UCefStringTraitsUTF16@@@@@z) 中引用了该符号 [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(libcef_dll_wrapper.obj) : error LNK2019: 无法解析的外部符号 cef_format_url_for_security_display,函数 "class CefStringBase __cdecl CefFormatUrlForSecurityDisplay(class CefStringBase const &)" (?CefFormatUrlForSecurityDisplay@@y
A?AV?$CefStringBase@UCefStringTraitsUTF16@@@@AEBV1@@z) 中引用了该符号 [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(libcef_dll_wrapper.obj) : error LNK2019: 无法解析的外部符号 cef_get_mime_type,函数 "class CefStringBase __c
decl CefGetMimeType(class CefStringBase const &)" (?CefGetMimeType@@ya?AV?$CefStringBase@UCefStringTraitsUTF16@@@@AEBV1
@@z) 中引用了该符号 [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(libcef_dll_wrapper.obj) : error LNK2019: 无法解析的外部符号 cef_get_extensions_for_mime_type,函数 "void __cdecl CefGetExtensionsForMimeT
ype(class CefStringBase const &,class std::vector<class CefStringBase,class std::allocator
<class CefStringBase > > &)" (?CefGetExtensionsForMimeType@@YAXAEBV?$CefStringBase@UCefStringTraitsUTF16@@@@aeav?$vecto
r@V?$CefStringBase@UCefStringTraitsUTF16@@@@v?$allocator@V?$CefStringBase@UCefStringTraitsUTF16@@@@@std@@@std@@@z) 中引用了该符号 [C:\repo\opensource\QCefW
idget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(libcef_dll_wrapper.obj) : error LNK2019: 无法解析的外部符号 cef_base64encode,函数 "class CefStringBase __cd
ecl CefBase64Encode(void const *,unsigned __int64)" (?CefBase64Encode@@ya?AV?$CefStringBase@UCefStringTraitsUTF16@@@@PEBX_K@Z) 中引用了该符号 [C:\repo\open
source\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(libcef_dll_wrapper.obj) : error LNK2019: 无法解析的外部符号 cef_base64decode,函数 "class scoped_refptr __cdecl Cef
Base64Decode(class CefStringBase const &)" (?CefBase64Decode@@ya?AV?$scoped_refptr@VCefBinaryValue@@@@aebv?$CefStringBa
se@UCefStringTraitsUTF16@@@@@z) 中引用了该符号 [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(libcef_dll_wrapper.obj) : error LNK2019: 无法解析的外部符号 cef_uriencode,函数 "class CefStringBase __cdecl
CefURIEncode(class CefStringBase const &,bool)" (?CefURIEncode@@ya?AV?$CefStringBase@UCefStringTraitsUTF16@@@@AEBV1@_N
@z) 中引用了该符号 [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(libcef_dll_wrapper.obj) : error LNK2019: 无法解析的外部符号 cef_uridecode,函数 "class CefStringBase __cdecl
CefURIDecode(class CefStringBase const &,bool,enum cef_uri_unescape_rule_t)" (?CefURIDecode@@ya?AV?$CefStringBase@UCef
StringTraitsUTF16@@@@AEBV1@_NW4cef_uri_unescape_rule_t@@@z) 中引用了该符号 [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(libcef_dll_wrapper.obj) : error LNK2019: 无法解析的外部符号 cef_parse_json,函数 "class scoped_refptr __cdecl CefParseJSO
N(class CefStringBase const &,enum cef_json_parser_options_t)" (?CefParseJSON@@ya?AV?$scoped_refptr@VCefValue@@@@aebv?$
CefStringBase@UCefStringTraitsUTF16@@@@W4cef_json_parser_options_t@@@z) 中引用了该符号 [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(libcef_dll_wrapper.obj) : error LNK2019: 无法解析的外部符号 cef_parse_json_buffer,函数 "class scoped_refptr __cdecl CefP
arseJSON(void const *,unsigned __int64,enum cef_json_parser_options_t)" (?CefParseJSON@@ya?AV?$scoped_refptr@VCefValue@@@@PEBX_KW4cef_json_parser_op
tions_t@@@z) 中引用了该符号 [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(libcef_dll_wrapper.obj) : error LNK2019: 无法解析的外部符号 cef_parse_jsonand_return_error,函数 "class scoped_refptr __c
decl CefParseJSONAndReturnError(class CefStringBase const &,enum cef_json_parser_options_t,class CefStringBase &)" (?CefParseJSONAndReturnError@@ya?AV?$scoped_refptr@VCefValue@@@@aebv?$CefStringBase@UCefStringTraitsUTF16@@@@W4cef_json_par
ser_options_t@@AEAV2@@z) 中引用了该符号 [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(libcef_dll_wrapper.obj) : error LNK2019: 无法解析的外部符号 cef_write_json,函数 "class CefStringBase __cdec
l CefWriteJSON(class scoped_refptr,enum cef_json_writer_options_t)" (?CefWriteJSON@@ya?AV?$CefStringBase@UCefStringTraitsUTF16@@@@v?
$scoped_refptr@VCefValue@@@@W4cef_json_writer_options_t@@@z) 中引用了该符号 [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(libcef_dll_wrapper.obj) : error LNK2019: 无法解析的外部符号 cef_get_path,函数 "bool __cdecl CefGetPath(enum cef_path_key_t,class CefStri
ngBase &)" (?CefGetPath@@YA_NW4cef_path_key_t@@aeav?$CefStringBase@UCefStringTraitsUTF16@@@@@z) 中引用了该符号 [C:\repo\openso
urce\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(libcef_dll_wrapper.obj) : error LNK2019: 无法解析的外部符号 cef_launch_process,函数 "bool __cdecl CefLaunchProcess(class scoped_refptr)" (?CefLaunchProcess@@YA_NV?$scoped_refptr@VCefCommandLine@@@@@z) 中引用了该符号 [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCe
fWing.vcxproj]
libcef_dll_wrapper.lib(libcef_dll_wrapper.obj) : error LNK2019: 无法解析的外部符号 cef_begin_tracing,函数 "bool __cdecl CefBeginTracing(class CefStringBase const &,class scoped_refptr)" (?CefBeginTracing@@YA_NAEBV?$CefStringBase@UCefStringTraitsUTF1
6@@@@v?$scoped_refptr@VCefCompletionCallback@@@@@z) 中引用了该符号 [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(libcef_dll_wrapper.obj) : error LNK2019: 无法解析的外部符号 cef_end_tracing,函数 "bool __cdecl CefEndTracing(class CefStringBase const &,class scoped_refptr)" (?CefEndTracing@@YA_NAEBV?$CefStringBase@UCefStringTraitsUTF16@@@@v
?$scoped_refptr@VCefEndTracingCallback@@@@@z) 中引用了该符号 [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(libcef_dll_wrapper.obj) : error LNK2019: 无法解析的外部符号 cef_now_from_system_trace_time,函数 "__int64 __cdecl CefNowFromSystemTraceTi
me(void)" (?CefNowFromSystemTraceTime@@YA_JXZ) 中引用了该符号 [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(libcef_dll_wrapper.obj) : error LNK2019: 无法解析的外部符号 cef_visit_web_plugin_info,函数 "void __cdecl CefVisitWebPluginInfo(class sco
ped_refptr)" (?CefVisitWebPluginInfo@@yaxv?$scoped_refptr@VCefWebPluginInfoVisitor@@@@@z) 中引用了该符号 [C:\repo\opensource
\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(libcef_dll_wrapper.obj) : error LNK2019: 无法解析的外部符号 cef_refresh_web_plugins,函数 "void __cdecl CefRefreshWebPlugins(void)" (?Cef
RefreshWebPlugins@@yaxxz) 中引用了该符号 [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(libcef_dll_wrapper.obj) : error LNK2019: 无法解析的外部符号 cef_unregister_internal_web_plugin,函数 "void __cdecl CefUnregisterInternalW
ebPlugin(class CefStringBase const &)" (?CefUnregisterInternalWebPlugin@@YAXAEBV?$CefStringBase@UCefStringTraitsUTF16@@
@@@z) 中引用了该符号 [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(libcef_dll_wrapper.obj) : error LNK2019: 无法解析的外部符号 cef_register_web_plugin_crash,函数 "void __cdecl CefRegisterWebPluginCrash(c
lass CefStringBase const &)" (?CefRegisterWebPluginCrash@@YAXAEBV?$CefStringBase@UCefStringTraitsUTF16@@@@@z) 中引用了该符号 [
C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(libcef_dll_wrapper.obj) : error LNK2019: 无法解析的外部符号 cef_is_web_plugin_unstable,函数 "void __cdecl CefIsWebPluginUnstable(class C
efStringBase const &,class scoped_refptr)" (?CefIsWebPluginUnstable@@YAXAEBV?$CefSt
ringBase@UCefStringTraitsUTF16@@@@v?$scoped_refptr@VCefWebPluginUnstableCallback@@@@@z) 中引用了该符号 [C:\repo\opensource\QCefWidget\build\src\QCefWing\QC
efWing.vcxproj]
libcef_dll_wrapper.lib(libcef_dll_wrapper.obj) : error LNK2019: 无法解析的外部符号 cef_register_widevine_cdm,函数 "void __cdecl CefRegisterWidevineCdm(class Ce
fStringBase const &,class scoped_refptr)" (?CefRegisterWidevineCdm@@YAXAEBV?$CefStringBas
e@UCefStringTraitsUTF16@@@@v?$scoped_refptr@VCefRegisterCdmCallback@@@@@z) 中引用了该符号 [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxpro
j]
libcef_dll_wrapper.lib(libcef_dll_wrapper.obj) : error LNK2019: 无法解析的外部符号 cef_execute_java_script_with_user_gesture_for_tests,函数 "void __cdecl CefEx
ecuteJavaScriptWithUserGestureForTests(class scoped_refptr,class CefStringBase const &)" (?CefExecuteJa
vaScriptWithUserGestureForTests@@yaxv?$scoped_refptr@VCefFrame@@@@aebv?$CefStringBase@UCefStringTraitsUTF16@@@@@z) 中引用了该符号 [C:\repo\opensource\QCefW
idget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(libcef_dll_wrapper.obj) : error LNK2019: 无法解析的外部符号 cef_api_hash,函数 "int __cdecl CefExecuteProcess(class CefMainArgs const &,c
lass scoped_refptr,void *)" (?CefExecuteProcess@@YAHAEBVCefMainArgs@@v?$scoped_refptr@VCefApp@@@@Peax@Z) 中引用了该符号 [C:\repo\opensource\Q
CefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(command_line_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_api_hash [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.v
cxproj]
libcef_dll_wrapper.lib(process_message_ctocpp.obj) : error LNK2019: 无法解析的外部符号 cef_process_message_create,函数 "public: static class scoped_refptr __cdecl CefProcessMessage::Create(class CefStringBase const &)" (?Create@CefProcessMessage@@sa?AV?
$scoped_refptr@VCefProcessMessage@@@@aebv?$CefStringBase@UCefStringTraitsUTF16@@@@@z) 中引用了该符号 [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCef
Wing.vcxproj]
libcef_dll_wrapper.lib(v8context_ctocpp.obj) : error LNK2019: 无法解析的外部符号 cef_v8context_get_current_context,函数 "public: static class scoped_refptr __cdecl CefV8Context::GetCurrentContext(void)" (?GetCurrentContext@CefV8Context@@sa?AV?$scoped_refptr@VCefV8Context@@@@xz) 中引用了 该符号
[C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(v8context_ctocpp.obj) : error LNK2019: 无法解析的外部符号 cef_v8context_get_entered_context,函数 "public: static class scoped_refptr __cdecl CefV8Context::GetEnteredContext(void)" (?GetEnteredContext@CefV8Context@@sa?AV?$scoped_refptr@VCefV8Context@@@@xz) 中引用了 该符号
[C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(v8context_ctocpp.obj) : error LNK2019: 无法解析的外部符号 cef_v8context_in_context,函数 "public: static bool __cdecl CefV8Context::InCon
text(void)" (?InContext@CefV8Context@@SA_NXZ) 中引用了该符号 [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(v8value_ctocpp.obj) : error LNK2019: 无法解析的外部符号 cef_v8value_create_undefined,函数 "public: static class scoped_refptr<class CefV
8Value> __cdecl CefV8Value::CreateUndefined(void)" (?CreateUndefined@CefV8Value@@sa?AV?$scoped_refptr@VCefV8Value@@@@xz) 中引用了该符号 [C:\repo\opensource
\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(v8value_ctocpp.obj) : error LNK2019: 无法解析的外部符号 cef_v8value_create_null,函数 "public: static class scoped_refptr __cdecl CefV8Value::CreateNull(void)" (?CreateNull@CefV8Value@@sa?AV?$scoped_refptr@VCefV8Value@@@@xz) 中引用了该符号 [C:\repo\opensource\QCefWidget\bui
ld\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(v8value_ctocpp.obj) : error LNK2019: 无法解析的外部符号 cef_v8value_create_bool,函数 "public: static class scoped_refptr __cdecl CefV8Value::CreateBool(bool)" (?CreateBool@CefV8Value@@sa?AV?$scoped_refptr@VCefV8Value@@@@_N@Z) 中引用了该符号 [C:\repo\opensource\QCefWidget\b
uild\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(v8value_ctocpp.obj) : error LNK2019: 无法解析的外部符号 cef_v8value_create_int,函数 "public: static class scoped_refptr<class CefV8Value

__cdecl CefV8Value::CreateInt(int)" (?CreateInt@CefV8Value@@sa?AV?$scoped_refptr@VCefV8Value@@@@h@Z) 中引用了该符号 [C:\repo\opensource\QCefWidget\build
src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(v8value_ctocpp.obj) : error LNK2019: 无法解析的外部符号 cef_v8value_create_uint,函数 "public: static class scoped_refptr __cdecl CefV8Value::CreateUInt(unsigned int)" (?CreateUInt@CefV8Value@@sa?AV?$scoped_refptr@VCefV8Value@@@@i@Z) 中引用了该符号 [C:\repo\opensource\QCefW
idget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(v8value_ctocpp.obj) : error LNK2019: 无法解析的外部符号 cef_v8value_create_double,函数 "public: static class scoped_refptr __cdecl CefV8Value::CreateDouble(double)" (?CreateDouble@CefV8Value@@sa?AV?$scoped_refptr@VCefV8Value@@@@n@Z) 中引用了该符号 [C:\repo\opensource\QCefW
idget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(v8value_ctocpp.obj) : error LNK2019: 无法解析的外部符号 cef_v8value_create_date,函数 "public: static class scoped_refptr __cdecl CefV8Value::CreateDate(class CefTime const &)" (?CreateDate@CefV8Value@@sa?AV?$scoped_refptr@VCefV8Value@@@@AEBVCefTime@@@z) 中引用了该符 号 [C:
repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(v8value_ctocpp.obj) : error LNK2019: 无法解析的外部符号 cef_v8value_create_string,函数 "public: static class scoped_refptr __cdecl CefV8Value::CreateString(class CefStringBase const &)" (?CreateString@CefV8Value@@sa?AV?$scoped_refptr@VCe
fV8Value@@@@aebv?$CefStringBase@UCefStringTraitsUTF16@@@@@z) 中引用了该符号 [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(v8value_ctocpp.obj) : error LNK2019: 无法解析的外部符号 cef_v8value_create_object,函数 "public: static class scoped_refptr __cdecl CefV8Value::CreateObject(class scoped_refptr,class scoped_refptr)" (?CreateObject@CefV8Val
ue@@sa?AV?$scoped_refptr@VCefV8Value@@@@v?$scoped_refptr@VCefV8Accessor@@@@v?$scoped_refptr@VCefV8Interceptor@@@@@z) 中引用了该符号 [C:\repo\opensource\QCe
fWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(v8value_ctocpp.obj) : error LNK2019: 无法解析的外部符号 cef_v8value_create_array,函数 "public: static class scoped_refptr __cdecl CefV8Value::CreateArray(int)" (?CreateArray@CefV8Value@@sa?AV?$scoped_refptr@VCefV8Value@@@@h@Z) 中引用了该符号 [C:\repo\opensource\QCefWidget
build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(v8value_ctocpp.obj) : error LNK2019: 无法解析的外部符号 cef_v8value_create_array_buffer,函数 "public: static class scoped_refptr __cdecl CefV8Value::CreateArrayBuffer(void *,unsigned __int64,class scoped_refptr)" (?CreateArrayB
uffer@CefV8Value@@sa?AV?$scoped_refptr@VCefV8Value@@@@PEAX_KV?$scoped_refptr@VCefV8ArrayBufferReleaseCallback@@@@@z) 中引用了该符号 [C:\repo\opensource\QCe
fWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(v8value_ctocpp.obj) : error LNK2019: 无法解析的外部符号 cef_v8value_create_function,函数 "public: static class scoped_refptr __cdecl CefV8Value::CreateFunction(class CefStringBase const &,class scoped_refptr)" (?Creat
eFunction@CefV8Value@@sa?AV?$scoped_refptr@VCefV8Value@@@@aebv?$CefStringBase@UCefStringTraitsUTF16@@@@v?$scoped_refptr@VCefV8Handler@@@@@z) 中引用了该符号
[C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(cef_message_router.obj) : error LNK2019: 无法解析的外部符号 cef_string_utf16_to_utf8,函数 "public: static class std::basic_string<char,s
truct std::char_traits,class std::allocator > __cdecl CefStringTraitsUTF16::to_string(struct _cef_string_utf16_t const *)" (?to_string@C
efStringTraitsUTF16@@sa?AV?$basic_string@DU?$char_traits@D@std@@v?$allocator@D@2@@std@@PEBU_cef_string_utf16_t@@@z) 中引用了该符号 [C:\repo\opensource\QCef
Widget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(binary_value_ctocpp.obj) : error LNK2019: 无法解析的外部符号 cef_binary_value_create,函数 "public: static class scoped_refptr __cdecl CefBinaryValue::Create(void const *,unsigned __int64)" (?Create@CefBinaryValue@@sa?AV?$scoped_refptr@VCefBinaryValue@@@@PEBX_K@Z
) 中引用了该符号 [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(command_line_ctocpp.obj) : error LNK2019: 无法解析的外部符号 cef_string_map_alloc,函数 "public: virtual void __cdecl CefCommandLineCToCp
p::GetSwitches(class std::map<class CefStringBase,class CefStringBase,struct std::less<cla
ss CefStringBase >,class std::allocator<struct std::pair<class CefStringBase const ,class
CefStringBase > > > &)" (?GetSwitches@CefCommandLineCToCpp@@UEAAXAEAV?$map@V?$CefStringBase@UCefStringTraitsUTF16@@@@v1
@U?$less@V?$CefStringBase@UCefStringTraitsUTF16@@@@@std@@v?$allocator@U?$pair@$$CBV?$CefStringBase@UCefStringTraitsUTF16@@@@v1@@std@@@3@@std@@@z) 中 引
用了该符号 [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(domnode_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_map_alloc [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWin
g.vcxproj]
libcef_dll_wrapper.lib(command_line_ctocpp.obj) : error LNK2019: 无法解析的外部符号 cef_string_map_free,函数 "public: virtual void __cdecl CefCommandLineCToCpp
::GetSwitches(class std::map<class CefStringBase,class CefStringBase,struct std::less<clas
s CefStringBase >,class std::allocator<struct std::pair<class CefStringBase const ,class C
efStringBase > > > &)" (?GetSwitches@CefCommandLineCToCpp@@UEAAXAEAV?$map@V?$CefStringBase@UCefStringTraitsUTF16@@@@v1@
U?$less@V?$CefStringBase@UCefStringTraitsUTF16@@@@@std@@v?$allocator@U?$pair@$$CBV?$CefStringBase@UCefStringTraitsUTF16@@@@v1@@std@@@3@@std@@@z) 中引用
了该符号 [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(domnode_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_map_free [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing
.vcxproj]
libcef_dll_wrapper.lib(command_line_ctocpp.obj) : error LNK2019: 无法解析的外部符号 cef_command_line_create,函数 "public: static class scoped_refptr __cdecl CefCommandLine::CreateCommandLine(void)" (?CreateCommandLine@CefCommandLine@@sa?AV?$scoped_refptr@VCefCommandLine@@@@xz) 中引用了该符号
[C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(command_line_ctocpp.obj) : error LNK2019: 无法解析的外部符号 cef_command_line_get_global,函数 "public: static class scoped_refptr __cdecl CefCommandLine::GetGlobalCommandLine(void)" (?GetGlobalCommandLine@CefCommandLine@@sa?AV?$scoped_refptr@VCefCommandLine@@@@x
Z) 中引用了该符号 [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(value_ctocpp.obj) : error LNK2019: 无法解析的外部符号 cef_value_create,函数 "public: static class scoped_refptr __cdecl
CefValue::Create(void)" (?Create@CefValue@@sa?AV?$scoped_refptr@VCefValue@@@@xz) 中引用了该符号 [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.
vcxproj]
libcef_dll_wrapper.lib(transfer_util.obj) : error LNK2019: 无法解析的外部符号 cef_string_list_size,函数 "void __cdecl transfer_string_list_contents(void *,clas
s std::vector<class CefStringBase,class std::allocator<class CefStringBase > > &)" (?trans
fer_string_list_contents@@YAXPEAXAEAV?$vector@V?$CefStringBase@UCefStringTraitsUTF16@@@@v?$allocator@V?$CefStringBase@UCefStringTraitsUTF16@@@@@std@
@@std@@@z) 中引用了该符号 [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(transfer_util.obj) : error LNK2019: 无法解析的外部符号 cef_string_list_value,函数 "void __cdecl transfer_string_list_contents(void *,cla
ss std::vector<class CefStringBase,class std::allocator<class CefStringBase > > &)" (?tran
sfer_string_list_contents@@YAXPEAXAEAV?$vector@V?$CefStringBase@UCefStringTraitsUTF16@@@@v?$allocator@V?$CefStringBase@UCefStringTraitsUTF16@@@@@std
@@@std@@@z) 中引用了该符号 [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(transfer_util.obj) : error LNK2019: 无法解析的外部符号 cef_string_list_append,函数 "void __cdecl transfer_string_list_contents(class std
::vector<class CefStringBase,class std::allocator<class CefStringBase > > const &,void *)"
(?transfer_string_list_contents@@YAXAEBV?$vector@V?$CefStringBase@UCefStringTraitsUTF16@@@@v?$allocator@V?$CefStringBase@UCefStringTraitsUTF16@@@@@
std@@@std@@Peax@Z) 中引用了该符号 [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(transfer_util.obj) : error LNK2019: 无法解析的外部符号 cef_string_map_size,函数 "void __cdecl transfer_string_map_contents(void *,class
std::map<class CefStringBase,class CefStringBase,struct std::less<class CefStringBase >,class std::allocator<struct std::pair<class CefStringBase const ,class CefStringBase > > > &)" (?transfer_string_map_contents@@YAXPEAXAEAV?$map@V?$CefStringBase@UCefStringTraitsUTF16@@@@v1@U?$less@V?$CefStringBa
se@UCefStringTraitsUTF16@@@@@std@@v?$allocator@U?$pair@$$CBV?$CefStringBase@UCefStringTraitsUTF16@@@@v1@@std@@@3@@std@@@z) 中引用了该符号 [C:\repo\opensour
ce\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(transfer_util.obj) : error LNK2019: 无法解析的外部符号 cef_string_map_key,函数 "void __cdecl transfer_string_map_contents(void *,class s
td::map<class CefStringBase,class CefStringBase,struct std::less<class CefStringBase >,class std::allocator<struct std::pair<class CefStringBase const ,class CefStringBase > > > &)" (?transfer_string_map_contents@@YAXPEAXAEAV?$map@V?$CefStringBase@UCefStringTraitsUTF16@@@@v1@U?$less@V?$CefStringBas
e@UCefStringTraitsUTF16@@@@@std@@v?$allocator@U?$pair@$$CBV?$CefStringBase@UCefStringTraitsUTF16@@@@v1@@std@@@3@@std@@@z) 中引用了该符号 [C:\repo\opensourc
e\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(transfer_util.obj) : error LNK2019: 无法解析的外部符号 cef_string_map_value,函数 "void __cdecl transfer_string_map_contents(void *,class
std::map<class CefStringBase,class CefStringBase,struct std::less<class CefStringBase >,class std::allocator<struct std::pair<class CefStringBase const ,class CefStringBase > > > &)" (?transfer_string_map_contents@@YAXPEAXAEAV?$map@V?$CefStringBase@UCefStringTraitsUTF16@@@@v1@U?$less@V?$CefStringB
ase@UCefStringTraitsUTF16@@@@@std@@v?$allocator@U?$pair@$$CBV?$CefStringBase@UCefStringTraitsUTF16@@@@v1@@std@@@3@@std@@@z) 中引用了该符号 [C:\repo\opensou
rce\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(transfer_util.obj) : error LNK2019: 无法解析的外部符号 cef_string_map_append,函数 "void __cdecl transfer_string_map_contents(class std::
map<class CefStringBase,class CefStringBase,struct std::less<class CefStringBase >,class std::allocator<struct std::pair<class CefStringBase const ,class CefStringBase > > > const &,void *)" (?transfer_string_map_contents@@YAXAEBV?$map@V?$CefStringBase@UCefStringTraitsUTF16@@@@v1@U?$less@V?$CefStri
ngBase@UCefStringTraitsUTF16@@@@@std@@v?$allocator@U?$pair@$$CBV?$CefStringBase@UCefStringTraitsUTF16@@@@v1@@std@@@3@@std@@Peax@Z) 中引用了该符号 [C:\repo
opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(transfer_util.obj) : error LNK2019: 无法解析的外部符号 cef_string_multimap_size,函数 "void __cdecl transfer_string_multimap_contents(voi
d *,class std::multimap<class CefStringBase,class CefStringBase,struct std::less<class Cef
StringBase >,class std::allocator<struct std::pair<class CefStringBase const ,class CefStr
ingBase > > > &)" (?transfer_string_multimap_contents@@YAXPEAXAEAV?$multimap@V?$CefStringBase@UCefStringTraitsUTF16@@@@
V1@U?$less@V?$CefStringBase@UCefStringTraitsUTF16@@@@@std@@v?$allocator@U?$pair@$$CBV?$CefStringBase@UCefStringTraitsUTF16@@@@v1@@std@@@3@@std@@@z)
中引用了该符号 [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(transfer_util.obj) : error LNK2019: 无法解析的外部符号 cef_string_multimap_key,函数 "void __cdecl transfer_string_multimap_contents(void
*,class std::multimap<class CefStringBase,class CefStringBase,struct std::less<class CefS
tringBase >,class std::allocator<struct std::pair<class CefStringBase const ,class CefStri
ngBase > > > &)" (?transfer_string_multimap_contents@@YAXPEAXAEAV?$multimap@V?$CefStringBase@UCefStringTraitsUTF16@@@@v
1@U?$less@V?$CefStringBase@UCefStringTraitsUTF16@@@@@std@@v?$allocator@U?$pair@$$CBV?$CefStringBase@UCefStringTraitsUTF16@@@@v1@@std@@@3@@std@@@z) 中
引用了该符号 [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(transfer_util.obj) : error LNK2019: 无法解析的外部符号 cef_string_multimap_value,函数 "void __cdecl transfer_string_multimap_contents(vo
id *,class std::multimap<class CefStringBase,class CefStringBase,struct std::less<class Ce
fStringBase >,class std::allocator<struct std::pair<class CefStringBase const ,class CefSt
ringBase > > > &)" (?transfer_string_multimap_contents@@YAXPEAXAEAV?$multimap@V?$CefStringBase@UCefStringTraitsUTF16@@@
@v1@U?$less@V?$CefStringBase@UCefStringTraitsUTF16@@@@@std@@v?$allocator@U?$pair@$$CBV?$CefStringBase@UCefStringTraitsUTF16@@@@v1@@std@@@3@@std@@@z)
中引用了该符号 [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(transfer_util.obj) : error LNK2019: 无法解析的外部符号 cef_string_multimap_append,函数 "void __cdecl transfer_string_multimap_contents(c
lass std::multimap<class CefStringBase,class CefStringBase,struct std::less<class CefStrin
gBase >,class std::allocator<struct std::pair<class CefStringBase const ,class CefStringBa
se > > > const &,void *)" (?transfer_string_multimap_contents@@YAXAEBV?$multimap@V?$CefStringBase@UCefStringTraitsUTF16
@@@@v1@U?$less@V?$CefStringBase@UCefStringTraitsUTF16@@@@@std@@v?$allocator@U?$pair@$$CBV?$CefStringBase@UCefStringTraitsUTF16@@@@v1@@std@@@3@@std@@
PEAX@Z) 中引用了该符号 [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(list_value_ctocpp.obj) : error LNK2019: 无法解析的外部符号 cef_list_value_create,函数 "public: static class scoped_refptr __cdecl CefListValue::Create(void)" (?Create@CefListValue@@sa?AV?$scoped_refptr@VCefListValue@@@@xz) 中引用了该符号 [C:\repo\opensource\QCefWidget\bu
ild\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(task_runner_ctocpp.obj) : error LNK2019: 无法解析的外部符号 cef_task_runner_get_for_current_thread,函数 "public: static class scoped_ref
ptr __cdecl CefTaskRunner::GetForCurrentThread(void)" (?GetForCurrentThread@CefTaskRunner@@sa?AV?$scoped_refptr@VCefTaskRunner@
@@@xz) 中引用了该符号 [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(task_runner_ctocpp.obj) : error LNK2019: 无法解析的外部符号 cef_task_runner_get_for_thread,函数 "public: static class scoped_refptr __cdecl CefTaskRunner::GetForThread(enum cef_thread_id_t)" (?GetForThread@CefTaskRunner@@sa?AV?$scoped_refptr@VCefTaskRunner@@@@w4c
ef_thread_id_t@@@z) 中引用了该符号 [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(browser_process_handler_cpptoc.obj) : error LNK2019: 无法解析的外部符号 cef_string_list_clear,函数 "void __cdecl `anonymous namespace'::
browser_process_handler_get_cookieable_schemes(struct _cef_browser_process_handler_t *,void *,int *)" (?browser_process_handler_get_cookieable_schem
es@?A0x468d91f5@@YAXPEAU_cef_browser_process_handler_t@@PEAXPEAH@Z) 中引用了该符号 [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(request_ctocpp.obj) : error LNK2019: 无法解析的外部符号 cef_string_multimap_alloc,函数 "public: virtual void __cdecl CefRequestCToCpp::G
etHeaderMap(class std::multimap<class CefStringBase,class CefStringBase,struct std::less<c
lass CefStringBase >,class std::allocator<struct std::pair<class CefStringBase const ,clas
s CefStringBase > > > &)" (?GetHeaderMap@CefRequestCToCpp@@UEAAXAEAV?$multimap@V?$CefStringBase@UCefStringTraitsUTF16@@
@@v1@U?$less@V?$CefStringBase@UCefStringTraitsUTF16@@@@@std@@v?$allocator@U?$pair@$$CBV?$CefStringBase@UCefStringTraitsUTF16@@@@v1@@std@@@3@@std@@@z
) 中引用了该符号 [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(response_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_multimap_alloc [C:\repo\opensource\QCefWidget\build\src\QCefWing\Q
CefWing.vcxproj]
libcef_dll_wrapper.lib(request_ctocpp.obj) : error LNK2019: 无法解析的外部符号 cef_string_multimap_free,函数 "public: virtual void __cdecl CefRequestCToCpp::Ge
tHeaderMap(class std::multimap<class CefStringBase,class CefStringBase,struct std::less<cl
ass CefStringBase >,class std::allocator<struct std::pair<class CefStringBase const ,class
CefStringBase > > > &)" (?GetHeaderMap@CefRequestCToCpp@@UEAAXAEAV?$multimap@V?$CefStringBase@UCefStringTraitsUTF16@@@
@v1@U?$less@V?$CefStringBase@UCefStringTraitsUTF16@@@@@std@@v?$allocator@U?$pair@$$CBV?$CefStringBase@UCefStringTraitsUTF16@@@@v1@@std@@@3@@std@@@z)
中引用了该符号 [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(response_ctocpp.obj) : error LNK2001: 无法解析的外部符号 cef_string_multimap_free [C:\repo\opensource\QCefWidget\build\src\QCefWing\QC
efWing.vcxproj]
libcef_dll_wrapper.lib(request_ctocpp.obj) : error LNK2019: 无法解析的外部符号 cef_request_create,函数 "public: static class scoped_refptr __
cdecl CefRequest::Create(void)" (?Create@CefRequest@@sa?AV?$scoped_refptr@VCefRequest@@@@xz) 中引用了该符号 [C:\repo\opensource\QCefWidget\build\src\QCefWi
ng\QCefWing.vcxproj]
libcef_dll_wrapper.lib(urlrequest_ctocpp.obj) : error LNK2019: 无法解析的外部符号 cef_urlrequest_create,函数 "public: static class scoped_refptr __cdecl CefURLRequest::Create(class scoped_refptr,class scoped_refptr,class scoped_refptr)" (?Create@CefURLRequest@@sa?AV?$scoped_refptr@VCefURLRequest@@@@v?$scoped_refptr@VCefRequest@@@@v?$scoped_refptr@VCefURLRequestC
lient@@@@v?$scoped_refptr@VCefRequestContext@@@@@z) 中引用了该符号 [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(dictionary_value_ctocpp.obj) : error LNK2019: 无法解析的外部符号 cef_dictionary_value_create,函数 "public: static class scoped_refptr __cdecl CefDictionaryValue::Create(void)" (?Create@CefDictionaryValue@@sa?AV?$scoped_refptr@VCefDictionaryValue@@@@xz) 中引用了该
符号 [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(browser_host_ctocpp.obj) : error LNK2019: 无法解析的外部符号 cef_browser_host_create_browser,函数 "public: static bool __cdecl CefBrowse
rHost::CreateBrowser(class CefWindowInfo const &,class scoped_refptr,class CefStringBase const &,class
CefStructBase const &,class scoped_refptr,class scoped_refptr)"
(?CreateBrowser@CefBrowserHost@@SA_NAEBVCefWindowInfo@@v?$scoped_refptr@VCefClient@@@@aebv?$CefStringBase@UCefStringTraitsUTF16@@@@aebv?$CefStructB
ase@UCefBrowserSettingsTraits@@@@v?$scoped_refptr@VCefDictionaryValue@@@@v?$scoped_refptr@VCefRequestContext@@@@@z) 中引用了该符号 [C:\repo\opensource\QCef
Widget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(browser_host_ctocpp.obj) : error LNK2019: 无法解析的外部符号 cef_browser_host_create_browser_sync,函数 "public: static class scoped_refp
tr __cdecl CefBrowserHost::CreateBrowserSync(class CefWindowInfo const &,class scoped_refptr,class CefStringBase<
struct CefStringTraitsUTF16> const &,class CefStructBase const &,class scoped_refptr,clas
s scoped_refptr)" (?CreateBrowserSync@CefBrowserHost@@sa?AV?$scoped_refptr@VCefBrowser@@@@AEBVCefWindowInfo@@v?$scoped_refp
tr@VCefClient@@@@aebv?$CefStringBase@UCefStringTraitsUTF16@@@@aebv?$CefStructBase@UCefBrowserSettingsTraits@@@@v?$scoped_refptr@VCefDictionaryValue@
@@@v?$scoped_refptr@VCefRequestContext@@@@@z) 中引用了该符号 [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(v8stack_trace_ctocpp.obj) : error LNK2019: 无法解析的外部符号 cef_v8stack_trace_get_current,函数 "public: static class scoped_refptr __cdecl CefV8StackTrace::GetCurrent(int)" (?GetCurrent@CefV8StackTrace@@sa?AV?$scoped_refptr@VCefV8StackTrace@@@@h@Z) 中引用了该 符号 [C
:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(response_ctocpp.obj) : error LNK2019: 无法解析的外部符号 cef_response_create,函数 "public: static class scoped_refptr
__cdecl CefResponse::Create(void)" (?Create@CefResponse@@sa?AV?$scoped_refptr@VCefResponse@@@@xz) 中引用了该符号 [C:\repo\opensource\QCefWidget\build\src
QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(post_data_ctocpp.obj) : error LNK2019: 无法解析的外部符号 cef_post_data_create,函数 "public: static class scoped_refptr __cdecl CefPostData::Create(void)" (?Create@CefPostData@@sa?AV?$scoped_refptr@VCefPostData@@@@xz) 中引用了该符号 [C:\repo\opensource\QCefWidget\build\sr
c\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(request_context_ctocpp.obj) : error LNK2019: 无法解析的外部符号 cef_request_context_get_global_context,函数 "public: static class scoped
_refptr __cdecl CefRequestContext::GetGlobalContext(void)" (?GetGlobalContext@CefRequestContext@@sa?AV?$scoped_refptr@VCefR
equestContext@@@@xz) 中引用了该符号 [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(request_context_ctocpp.obj) : error LNK2019: 无法解析的外部符号 cef_request_context_create_context,函数 "public: static class scoped_ref
ptr __cdecl CefRequestContext::CreateContext(class CefStructBase const &,class scop
ed_refptr)" (?CreateContext@CefRequestContext@@sa?AV?$scoped_refptr@VCefRequestContext@@@@aebv?$CefStructBase@UCefRe
questContextSettingsTraits@@@@v?$scoped_refptr@VCefRequestContextHandler@@@@@z) 中引用了该符号 [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.v
cxproj]
libcef_dll_wrapper.lib(request_context_ctocpp.obj) : error LNK2019: 无法解析的外部符号 cef_create_context_shared,函数 "public: static class scoped_refptr __cdecl CefRequestContext::CreateContext(class scoped_refptr,class scoped_refptr)" (?CreateContext@CefRequestContext@@sa?AV?$scoped_refptr@VCefRequestContext@@@@v2@V?$scoped_refptr@VCefRequestContextHandler@@@@@z) 中引用了该
符号 [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(drag_data_ctocpp.obj) : error LNK2019: 无法解析的外部符号 cef_drag_data_create,函数 "public: static class scoped_refptr __cdecl CefDragData::Create(void)" (?Create@CefDragData@@sa?AV?$scoped_refptr@VCefDragData@@@@xz) 中引用了该符号 [C:\repo\opensource\QCefWidget\build\sr
c\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(print_settings_ctocpp.obj) : error LNK2019: 无法解析的外部符号 cef_print_settings_create,函数 "public: static class scoped_refptr __cdecl CefPrintSettings::Create(void)" (?Create@CefPrintSettings@@sa?AV?$scoped_refptr@VCefPrintSettings@@@@xz) 中引用了该符号 [C:\repo
opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(post_data_element_ctocpp.obj) : error LNK2019: 无法解析的外部符号 cef_post_data_element_create,函数 "public: static class scoped_refptr<
class CefPostDataElement> __cdecl CefPostDataElement::Create(void)" (?Create@CefPostDataElement@@sa?AV?$scoped_refptr@VCefPostDataElement@@@@xz) 中引用
了该符号 [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(cookie_manager_ctocpp.obj) : error LNK2019: 无法解析的外部符号 cef_cookie_manager_get_global_manager,函数 "public: static class scoped_r
efptr __cdecl CefCookieManager::GetGlobalManager(class scoped_refptr)" (?GetGlobalManager@CefCo
okieManager@@sa?AV?$scoped_refptr@VCefCookieManager@@@@v?$scoped_refptr@VCefCompletionCallback@@@@@z) 中引用了该符号 [C:\repo\opensource\QCefWidget\build\s
rc\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(media_router_ctocpp.obj) : error LNK2019: 无法解析的外部符号 cef_media_router_get_global,函数 "public: static class scoped_refptr __cdecl CefMediaRouter::GetGlobalMediaRouter(void)" (?GetGlobalMediaRouter@CefMediaRouter@@sa?AV?$scoped_refptr@VCefMediaRouter@@@@x
Z) 中引用了该符号 [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(image_ctocpp.obj) : error LNK2019: 无法解析的外部符号 cef_image_create,函数 "public: static class scoped_refptr __cdecl
CefImage::CreateImage(void)" (?CreateImage@CefImage@@sa?AV?$scoped_refptr@VCefImage@@@@xz) 中引用了该符号 [C:\repo\opensource\QCefWidget\build\src\QCefWing
\QCefWing.vcxproj]
libcef_dll_wrapper.lib(stream_writer_ctocpp.obj) : error LNK2019: 无法解析的外部符号 cef_stream_writer_create_for_file,函数 "public: static class scoped_refptr
__cdecl CefStreamWriter::CreateForFile(class CefStringBase const &)" (?CreateForFile@CefStreamW
riter@@sa?AV?$scoped_refptr@VCefStreamWriter@@@@aebv?$CefStringBase@UCefStringTraitsUTF16@@@@@z) 中引用了该符号 [C:\repo\opensource\QCefWidget\build\src\QC
efWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(stream_writer_ctocpp.obj) : error LNK2019: 无法解析的外部符号 cef_stream_writer_create_for_handler,函数 "public: static class scoped_ref
ptr __cdecl CefStreamWriter::CreateForHandler(class scoped_refptr)" (?CreateForHandler@CefStreamWriter
@@sa?AV?$scoped_refptr@VCefStreamWriter@@@@v?$scoped_refptr@VCefWriteHandler@@@@@z) 中引用了该符号 [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWi
ng.vcxproj]
libcef_dll_wrapper.lib(menu_model_ctocpp.obj) : error LNK2019: 无法解析的外部符号 cef_menu_model_create,函数 "public: static class scoped_refptr __cdecl CefMenuModel::CreateMenuModel(class scoped_refptr)" (?CreateMenuModel@CefMenuModel@@sa?AV?$scoped_refptr@V
CefMenuModel@@@@v?$scoped_refptr@VCefMenuModelDelegate@@@@@z) 中引用了该符号 [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(stream_reader_ctocpp.obj) : error LNK2019: 无法解析的外部符号 cef_stream_reader_create_for_file,函数 "public: static class scoped_refptr
__cdecl CefStreamReader::CreateForFile(class CefStringBase const &)" (?CreateForFile@CefStreamR
eader@@sa?AV?$scoped_refptr@VCefStreamReader@@@@aebv?$CefStringBase@UCefStringTraitsUTF16@@@@@z) 中引用了该符号 [C:\repo\opensource\QCefWidget\build\src\QC
efWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(stream_reader_ctocpp.obj) : error LNK2019: 无法解析的外部符号 cef_stream_reader_create_for_data,函数 "public: static class scoped_refptr
__cdecl CefStreamReader::CreateForData(void *,unsigned __int64)" (?CreateForData@CefStreamReader@@sa?AV?$scoped_refptr@VCefS
treamReader@@@@PEAX_K@Z) 中引用了该符号 [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
libcef_dll_wrapper.lib(stream_reader_ctocpp.obj) : error LNK2019: 无法解析的外部符号 cef_stream_reader_create_for_handler,函数 "public: static class scoped_ref
ptr __cdecl CefStreamReader::CreateForHandler(class scoped_refptr)" (?CreateForHandler@CefStreamReader@
@sa?AV?$scoped_refptr@VCefStreamReader@@@@v?$scoped_refptr@VCefReadHandler@@@@@z) 中引用了该符号 [C:\repo\opensource\QCefWidget\build\src\QCefWing\QCefWing
.vcxproj]
......\dep\cef_binary_89.0.18+gb36241d+chromium-89.0.4389.114_windows32\Debug\libcef.lib : warning LNK4272: 库计算机类型“x86”与目标计算机类型“x64”冲突 [C:\repo\op
ensource\QCefWidget\build\src\QCefWing\QCefWing.vcxproj]
C:\repo\opensource\QCefWidget\out\QCefWidget\bin\Debug\QCefWing.exe : fatal error LNK1120: 128 个无法解析的外部命令 [C:\repo\opensource\QCefWidget\build\src\Q
CefWing\QCefWing.vcxproj]

小白一枚, 不知是配置出错, 还是操作姿势不对, 求大神指教, 提前谢谢了.

可以支持macOS, 和Linux吗

你好
可以支持macOS, 和Linux吗?
如果能支持,麻烦编译一份支持 macOS 和Linux libcef (支持 mp4, h264 功能)

 感谢~!

GWL_WNDPROC undefined when compiling for windows 64 bits

I think when using SetWindowLongPtr(), the correct value to use is GWLP_WNDPROC, not GWL_WNDPROC.
GWL_WNDPROC is used with SetWindowLong() instead.

GWL_WNDPROC and GWLP_WNDPROC are both defined in winuser.h. However, GWL_WNDPROC is not defined if _WIN64 is defined. Which makes sense, as SetWindowLong() is not available in a 64-bit flavor. SetWindowLongPtr() was introduced to support 64-bit.

Can not exist with QWebEngineView in same project

m_web = new PluginWebView();
ui->verticalLayout->addWidget(m_web);
m_web->setUrl("www.baidu.com");
QWebEngineView* test = new QWebEngineView();
ui->verticalLayout->addWidget(test);

then it will crash like this
1

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.