vote up 1 vote down star
1

Every time I interact with dll's like the user32.dll I need constants like MF_REMOVE. Is there a overview for all that constants or a c# library that constants all these constants?

flag

Use the Windows SDK if you can! – Anton Tykhyy Apr 5 at 14:24
where can i find this Windows SDK for winXP? – Amr ElGarhy Apr 5 at 14:30

3 Answers

vote up 2 vote down check

You'll find all the constants in the C headers of the win32 API. The low-tech way of getting this information is to simply run a text search in the headers folder of visual studio or the platform SDK.
This will usually be something like :

C:\Program Files\Microsoft SDKs\Windows\v6.0A\Include\

link|flag
vote up 3 vote down

I think you will find all what you want about APIs there: http://pinvoke.net/

link|flag
We provide an Add-in to Visual Studio 2003 and 2005 I Have vs 2008 and the tool do not appear in my VS – Tarion Apr 5 at 14:31
vote up 2 vote down

Try the PInvoke Interop Assistant. For most constants, all you have to do is simply enter their name and it will spit out the C# or VB.Net code which represents these contstants.

The tool is not limited to constants. It can also help with type definitions, functions, and function pointers. It can also translate most definition snippets on the fly to managed code.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.