系统前台为C#语言编写,后台为C++语言编写。问题发生在:尝试通过已有com组件(构建者编写的)前台调用后台函数获得相关数据时,不知如何调用(传参,返回值,写入文档)。
后台函数:
CString Get_Teststr(CString path)
{
return ...;
}
com组件:
STDMETHOD CFrame_Api::Get_Teststr(BSTR path, BSTR* Teststr)
{
*Teststr = Get_Teststr(path).AllocSysString();
//此处不知如何返回或者直接写入本地txt文件中
return S_OK;
}
前台调用:
public string TestStrPath = "D://TestStr.txt";
public string testStr;
//前台如何获得返回值,疑惑主要在于数据类型不同,多次尝试得到的数据均为空