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
There is no difference. You could type it as int * i if you wanted; they all mean the same thing: "i is a pointer to an int."
int * i
int* i and int *i are completely equivalent
int *i