我与QT .dll文件,我加载它在我的应用程序。 当它即将从一个函数返回,我得到:
ESP的值未正确保存跨函数调用
我开始与DLL项目:
这是我的device_manager_interface.hpp:
#ifndef __DEVICE_MANAGER_INTERFACE_HPP__
#define __DEVICE_MANAGER_INTERFACE_HPP__
#include <QtCore>
class DeviceManagerInterface
{
public:
virtual BCR * getDeviceBCR() = 0 ;
.
.
.
};
QT_BEGIN_NAMESPACE
Q_DECLARE_INTERFACE(DeviceManagerInterface,"some_info");
QT_END_NAMESPACE
#endif //__DEVICE_MANAGER_INTERFACE_HPP__
这是我的device_manager.hpp:
#ifndef __DEVICE_MANAGER_BASE_HPP__
#define __DEVICE_MANAGER_BASE_HPP__
#include "device_manager_interface.hpp"
class DeviceManager : public DeviceManagerInterface
{
public:
DeviceManager();
virtual BCR * getDeviceBCR();
.
.
.
protected:
virtual void initilzeAvailableDevices(DeviceList device_list);
virtual WORD startup();
.
.
.
};
#endif //__DEVICE_MANAGER_BASE_HPP__
这是我的device_manager.cpp:
#include "device_manager.hpp"
DeviceManager::DeviceManager()
{
}
void WINAPI DeviceManager::initilzeAvailableDevices(DeviceList device_list)
{
WORD wfs_version = startup();
.
.
.
}
WORD DeviceManager::startup()
{
WFSVERSION wfs_version;
HRESULT hRes;
hRes = WFSStartUp(SUPPORTED_VERSIONS, &wfs_version);
WORD version = wfs_version.wVersion;
return version;
}
WFSStartUp是包含在功能xfsapi.h
和这样定义。
HRESULT extern WINAPI WFSStartUp ( DWORD dwVersionsRequired, LPWFSVERSION lpWFSVersion);
这是我的device_manager_impl.hpp:
#ifndef __DEVICE_MANAGER_WINCORE_HPP__
#define __DEVICE_MANAGER_WINCORE_HPP__
#include "device_manager.hpp"
class DeviceManagerImpl : public QObject, DeviceManager
{
Q_OBJECT
Q_INTERFACES(DeviceManagerInterface)
public:
DeviceManagerImpl();
protected:
.
.
.
};
#endif //__DEVICE_MANAGER_WINCORE_HPP__
这是我的device_manager_impl.cpp:
#include "device_manager_impl.hpp"
#include "xfsapi.h"
#define BRAND_NAME "WINCORE"
DeviceManagerImpl::DeviceManagerImpl()
{
m_brand_name = BRAND_NAME;
fill_map_logical_names();
DeviceList device_list = detectAvailableDevices();
DeviceManager::initilzeAvailableDevices(device_list);
}
Q_EXPORT_PLUGIN2(device_manager_impl, DeviceManagerImpl);
该项目提供了一个名为WINCORE.dll一个DLL文件。
这是我如何加载此.dll:
QPluginLoader* pluginLoader = new QPluginLoader(filename);
QObject *plugin = pluginLoader->instance();
该filename
包含WINCORE.dll路径,它是正确的。 我的问题是startup()
在DeviceManager
类。 当想要返回version
,我得到的错误。 我究竟做错了什么?