我需要创建一个与回调函数一起使用的dll。 当我在项目属性中设置Runtime Libary =多线程调试(/ MTd)时, 它会生成此错误消息:
但是当我设置Runtime Libary =多线程调试DLL(/ MDd)时,应用程序运行正常
看看我的DLL:
callbackproc.h
#include <string>
#ifdef CALLBACKPROC_EXPORTS
#define CALLBACKPROC_API __declspec(dllexport)
#else
#define CALLBACKPROC_API __declspec(dllimport)
#endif
// our sample callback will only take 1 string parameter
typedef void (CALLBACK * fnCallBackFunc)(std::string value);
// marked as extern "C" to avoid name mangling issue
extern "C"
{
//this is the export function for subscriber to register the callback function
CALLBACKPROC_API void Register_Callback(fnCallBackFunc func);
}
callbackpro.cpp
#include "stdafx.h"
#include "callbackproc.h"
#include <sstream>
void Register_Callback(fnCallBackFunc func)
{
int count = 0;
// let's send 10 messages to the subscriber
while(count < 10)
{
// format the message
std::stringstream msg;
msg << "Message #" << count;
// call the callback function
func(msg.str());
count++;
// Sleep for 2 seconds
Sleep(2000);
}
}
stdafx.h中
#pragma once
#include "targetver.h"
#define WIN32_LEAN_AND_MEAN
// Windows Header Files:
#include <windows.h>
我的应用程序使用了dll
#include <windows.h>
#include <string>
#include "callbackproc.h"
// Callback function to print message receive from DLL
void CALLBACK MyCallbackFunc(std::string value)
{
printf("callback: %s\n", value.c_str());
}
int _tmain(int argc, _TCHAR* argv[])
{
// Register the callback to the DLL
Register_Callback(MyCallbackFunc);
return 0;
}
我哪里错了? 坦克!
答案 0 :(得分:4)
我认为这是在DLL边界传递std
类型(在本例中为std::string
)的典型问题。
作为最佳做法,只跨越DLL边界传递“本机”数据类型,我确信99%如果你从
更改原型typedef void (CALLBACK * fnCallBackFunc)(std::string value);
到
typedef void (CALLBACK * fnCallBackFunc)(const char* value);
无论基础运行时间如何,您的代码都将正常运行