vote up 0 vote down star

Possible Duplicate:
A good book to understand WinAPI programming?

Please close; duplicate of 329776.

I just recently got involved with an open source project that uses Windows.h WinAPI extensively, and libraries such as Advapi32. I'm a real newbie when it comes to low level C++ stuff, since I've been a C# developer most of my career. Any ideas for where I can get started?

Edit: Needs to be Vista/Win7 compliant.

Edit 2: Are there any books on WinAPI in general? Rather than specific libraries.

Edit 3: Are these the books I'm looking for?

flag

closed as exact duplicate by Nick Bolton, Jason S, Roddy, LFSR Consulting, Shog9 Aug 19 at 22:07

5 Answers

vote up 6 vote down check

Charles Petzold's Programming Windows is the definitive Win32 API book.

link|flag
Ah, why is Windows via C/C++ not the definitive? – Nick Bolton Aug 17 at 22:33
3  
Windows via C/C++ is great, but very focused on Win32 systems programming: processes, threads, I/O completion ports, synchronization primitives, etc. The book doesn't really focus on things like Win32 GUI programming. – David Grant Aug 17 at 22:38
vote up 0 vote down

I'd agree with "Charles Petzold's Programming Windows is the definitive Win32 API book" but if you want a modern overview try The Old New Thing: Practical Development Throughout the Evolution of Windows .

link|flag
vote up 3 vote down

I think that you really need 2 books

1./ Programming Windows (as Richie suggests) for the How
2./ Windows Internals (edition 5) for the What and Why.

link|flag
vote up 2 vote down

Windows via C/C++ is well worth the investment

link|flag
vote up 0 vote down

Windows.h is the fundamental header file for all the Windows APIs. I doubt there have been any books written about it specifically, but nearly any book on a Windows API would at least mention it as it pertains to that API. For a quick overview, I'd suggest looking at the Wikipedia article. You should figure out which APIs your project uses and read up on those specifically.

link|flag

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