我在托管 DLL 中使用 pocoXML 函数,该 DLL 由另一个托管 C++ 项目使用。托管 DLL 可以完美编译。但是当调用一个使用 poco 函数的 DLL 函数时,我在 debug_heap.cpp 中得到一个Debug Assertion Fail (is_block_type_valid)。
//managed DLL code:
#include "Poco/Timestamp.h"
#include "Poco/DateTimeFormatter.h"
#include "Poco/DateTimeFormat.h"
class __declspec(dllexport) log
{
public:
static void Log(const char* source, const char* file, const char* function, const std::string& str = "");
}
void log::Debug(const char* file, const char* function, const std::string& str)
{
const Poco::Timestamp now;
const std::string time = Poco::DateTimeFormatter::format(now, Poco::DateTimeFormat::ISO8601_FRAC_FORMAT);
std::stringstream log;
log << "[" << time.c_str() << "; Debug]: " << methodname(file, function) << " - " << str;
std::string str = log.str();
fprintf(stdout, "%s\n", str.c_str());
}
//call from managed C++:
log::Debug(__FILE__, __FUNCTION__, "message");
我究竟做错了什么?
谢谢!