Hello,
I have a dll that is written in c++. And I am p/invoking to call the functions.
I have this c++ declaration.
int dll_registerAccount(char* username, char* password);
I have done this dllimport declaration:
[DllImport("pjsipDlld")]
static extern int dll_registerAccount(IntPtr username, IntPtr password);
Would my DllImport be the equivalent to the c++ using IntPtr?
Many thanks for any advice,