M
Mike Carr
I am not sure where to turn, I have dropped a message in
microsoft.public.dotnet.framework.interop with no response. Can someone
point me in the right direction?
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?
When I try to access the function (long*) from C++, I get Run-Time Check
Failure #0
microsoft.public.dotnet.framework.interop with no response. Can someone
point me in the right direction?
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?
When I try to access the function (long*) from C++, I get Run-Time Check
Failure #0