I m 改写在C到Delphi的DLL文件,以便我能够使用DLL。
我的问题是,两者之间有何区别。
int* i
以及
int *i
我将第一个改为
i: PInteger;
但是,i m 不能确定正确的转换是Delphi的第二次转换。
from my underst以及ing the first is a simple typed pointer. The second is a pointer variable. but i m not sure what the difference is.