views:

28

answers:

1

I'm trying to write a browser helper object.. and sometimes I need to return E_INVALIDARG but I dont know what the value for this constant is. Is there a list of these constants in .net interop services somewhere? I've been searching the namespace in the object browser and I cant find it..

or do I not understand what I'm doing? Can someone point me in the right direction?

+2  A: 

See here: Common HRESULT values.

E_POINTER    = 0x80004003
E_INVALIDARG = 0x80070057
Joey
hhehe awesome. thank you very much.
djmc
+1. The SDK's WinUser.h file is the ultimate resource.
Hans Passant

related questions