如何从 VC++ 将字节传递给 c 函数。我正在使用 WinRT 编译。
错误:与参数类型不兼容。
C 函数
int TestFunction(unsigned char testdata[])
{
}
VC++ 类
int Wrapper::DoSomething(IVector<unsigned char>^ inputBytes)
{
TestFunction(inputBytes);
}
如何从 VC++ 将字节传递给 c 函数。我正在使用 WinRT 编译。
错误:与参数类型不兼容。
C 函数
int TestFunction(unsigned char testdata[])
{
}
VC++ 类
int Wrapper::DoSomething(IVector<unsigned char>^ inputBytes)
{
TestFunction(inputBytes);
}