up vote 8 down vote favorite
1
share [g+] share [fb]

Every few months I find myself needing to call Win32 from C#. Though I've done it a dozen times, I've usually forgotten the exact machinations, so I poke around the web or old code and figure out what DllImport statements I need, etc.

Am I alone?

Is there a sanctioned "Win32" class that has the requisite declarations for the entire Win32 API? Seems like there ought to be. Maybe I'm missing something.

link|improve this question

79% accept rate
3  
You're not alone. +1 – spender Oct 21 '09 at 2:31
1  
Definitely not alone. +1 – Mike Hofer Oct 21 '09 at 2:33
1  
pinvoke.net is great but a single assembly to reference would be so nice... – Luke Quinane Oct 21 '09 at 2:41
1  
I definitely don't want a single compiled assembly. The Win32 API is huge. I mean really huge. Dragging around thousands of API declarations just to get the one you want would be a real chore. Better to have the declarations as source code and copy the ones you want. – itowlson Oct 21 '09 at 2:50
1  
Dragging around? A single referenced assembly that organized the calls into enums, structs and classes would be extraordinarily useful. Especially if it was documented. But, to each his own, I guess. For me, I'll take the assembly. – Mike Hofer Oct 21 '09 at 2:55
show 1 more comment
feedback

6 Answers

up vote 8 down vote accepted

You may find http://www.pinvoke.net helpful.

Also, for common Win32 functions, you could try the P/Invoke Interop Assistant.

link|improve this answer
1  
PInvoke Interop Assistant can also be used to translate C code straight to the appropriate signatures and functions. – JaredPar Oct 21 '09 at 3:26
feedback

There's no sanctioned Win32 class, but http://www.pinvoke.net is a great central resource for these things.

link|improve this answer
feedback

This sounds like a great idea for an open source project.

/em puts on thinking cap, and runs of to pinvoke.net

link|improve this answer
feedback

Getting to the correct DllImport statements are easy like everyone is saying, but for ease if use I usually wrap the Win32 functions I need in C# classes and compile into my core helper assembly. So next time I just reference the assembly. So if I need some Win32 function, chances are it is already in my helper lib if not I just add it.

Also I map the return codes to Exceptions rather, i.e. if the HResult is non zero I throw an Exception so my C# apps do not need to know about HResult or return codes ever.

link|improve this answer
feedback

Check out: http://code.msdn.microsoft.com/WindowsAPICodePack

link|improve this answer
feedback

You could use Reflector and search for Win32Native. It has a bunch of definitions that you could use for PInvoking.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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