C ++ DLL char参数

时间:2014-10-15 17:11:26

标签: c++ c string dll

我想从C程序中调用这个c ++函数。我想使用char * errorMessage返回错误消息。当我在代码中执行 return errorMessage 时,我会在返回后获得C应用程序中的char指针。但是如果我尝试errorMessage = SafeStringHeap(string("File name was empty."));我总是在我的C应用程序中得到一个空指针。

我尝试使用c应用程序中的以下文本调用我的函数:

char* errorMessage = NULL;
TAFMessage = (*TAFParseMessageFile)(NULL, errorMessage);

功能:

static char* SafeStringHeap(string message)
{
    //Save string on the heap
    char * cstr = new char[message.length() + 1];
    strcpy_s(cstr, message.length() + 1, message.c_str());

    return cstr;
}

extern "C" __declspec(dllexport) const char* TAFParseMessageFile(const char* fileName, char* errorMessage)
{
    if (fileName == NULL)
    {
        errorMessage = SafeStringHeap(string("File name was empty."));
        return errorMessage;
    }

    return NULL;    // TODO: set errorMessage
}

1 个答案:

答案 0 :(得分:1)

受上述其他问题的影响。尝试将errorMessage参数更改为char **(指向char指针的指针),然后执行:

*errorMessage = SafeStringHeap(...)

调用函数pass& errorMessage