VC++ から C 関数にバイトを渡すにはどうすればよいですか。WinRT コンパイルを使用しています。
エラー: パラメータ タイプと互換性がありません。
C 関数
int TestFunction(unsigned char testdata[])
{
}
VC++ クラス
int Wrapper::DoSomething(IVector<unsigned char>^ inputBytes)
{
TestFunction(inputBytes);
}