我使用Delphi调用别人写的一个DLL,这个DLL中有个函数声明是这样写的:
int  FT_getNumDevices(
OUT unsigned int *numDevices);
请问我怎么转成Pascal语法阿?
function FT_getNumDevices(Number:^Integer):Integer;stdcall;external 'dll\dpFpFns.dll';这样写报错啊