unsigned int coordinateInner[8],coordinateOuter[8];
frag1=tell(coordinateInner[8],coordinateOuter[8]);
tell这个函数封装在dll中,定义如下:
int tell(unsigned int coordinateInner[8],unsigned int coordinateOuter[8])
{
...
..
.
}vc提示error C2664: 'tell' : cannot convert parameter 1 from 'unsigned int' to 'unsigned int []'
        Conversion from integral type to pointer type requires reinterpret_cast, C-style cast or function-style cast请问这是为什么?怎么改?