tags:

views:

49

answers:

1

Hello,

I want to learn windows API and PInvoke methods just like MesseageBeep in User32.dll.

Can you refer a book or a website where I can learn all of those in step by step way.

An ebook will also be appreciated.

Thanks in advance, Guru.

+2  A: 

Start with this tutorial.

For a more in-depth study, the ultimate bible of Win32 programming is Petzold's book

Eli Bendersky
Sir, it was a too good answer but could you please refer me a .NET tutorials or book as I'm a .NET developer and all C code goes up to my mind.Thanks.
Guru
If you really want to learn the Win32 API you really should learn C. It was designed to be used from C. You can't get the P/Invoke subtleties without knowing the language.
Hans Passant