I’m converting a header file for a DLL written in C to Delphi so I can use the DLL.
My question is what is the difference between
int* i
and
int *i
I convert the first to
i: PInteger;
But i’m not sure what the correct conversion is for the second one in Delphi.
from my understanding the first is a simple typed pointer.
The second is a pointer variable. but i’m not sure what the difference is.
int* iandint *iare completely equivalent