Can anyone tell me why my function:
public int pingPhone()
{
return 0;
}
comes across in the tlb as:
HRESULT _stdcall pingPhone([out, retval] long* pRetVal);
I need it to be:
HRESULT _stdcall pingPhone([out, retval] int* pRetVal);
Any ideas?

Signature
MICHAEL CARR
Mike Carr - 02 Sep 2004 19:55 GMT
It is throwing Debug Error! The value of ESP was not properly saved across
a function call.

Signature
MICHAEL CARR
> Can anyone tell me why my function:
> public int pingPhone()
[quoted text clipped - 8 lines]
>
> Any ideas?