Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a course at university where we are learning WinAPI programming. As I know C++ a bit, I must say that it is rather hard to deal with WinAPI - all these functions, structures, old-style casts, etc.

But at the same time, I think that a good book can make every difficult moment easy to learn.

My question actually consists of:

  1. What book would you advise me to read to understand WinAPI better? Except Jeffrey Richter`s 'Windows 2000 for Professional', of course:)
  2. What language you consider the most suitable and convenient for WinAPI programming? Delphi or C++?

Added: I forgot to say - MSDN not considered :)

share|improve this question

closed as not constructive by Smi, Linger, C. A. McCann, WATTO Studios, Mark Nov 5 '12 at 13:38

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

13 Answers

up vote 28 down vote accepted

Programming Windows (Charles Petzold) is the classic text.

share|improve this answer
It is of course, up to date for 1998. It doesn't cover differences since 1998 in WinAPI, but then, since the core hasn't changed much, that hardly matters. It's not exactly going to show you how to make a Windows vista logo compliant or Windows 7 logo compliant app, though. Maybe a new edition would be good, it's been 14 years. – Warren P Feb 19 '12 at 23:46

As previously mentioned, the Petzold is the best classic out there and is referred to by many programmers worldwide. Another book I HIGHLY recommend is Windows Via C/C++ by Jeffrey Richter & Christopher Nasarre, a great text with good referencing, it is Popular among many windows programmers as well.

share|improve this answer
Yes, this is essential second reading. – Rob Dec 3 '08 at 4:59

Other than Programming Windows by Petzold that @Rob mentioned...

If you want to learn about MFC...

MFC Programming with Visual C++ by Jeff Prosise is also a classic text.

share|improve this answer

Though its for .net, this site is a decent encyclopedic reference to many of the Win32 API functions.

http://www.pinvoke.net/

share|improve this answer

The best language for WinAPI is neither C++ nor Delphi, the best language for it is C; that is what the WinAPI itself is written in.

I have found the best way to understand the WinAPI is by read a lot of MSDN when ever I try to do something new.

share|improve this answer

I personally like books that have a LOT of reference, and just the right amount of teach. If they are all teach, I read them and they sit on my bookshelf for the rest of time.

I spent years doing alot of Win32 development, and this book is really old school now, but I still have it, and it is a good resource: Win32 API SuperBible. Amazingly, this book is over 11 years old now!

Your comments about Win32 are very correct. So many people now program for .NET, and use the .NET wrapped objects. However, Win32 is still useful, and gets you much closer to the OS than most of the .NET framework.

share|improve this answer
  • Petzold (the bible) + Richter + Russinovich
  • MSDN
  • Advanced Win32 api newsgroup (news://comp.os.ms-windows.programmer.win32) (source code for all Win32 apis, undocumented apis...)
share|improve this answer

Although it's mostly an older DirectX book, The Zen of Direct3D Game Programming by Peter Walsh actually has a good introduction (IMHO) to Windows programming. Of course, Petzold goes much deeper.

share|improve this answer

I'm currently using Windows via C/C++ just like John T said. It has good examples and is pretty thorough with respect to low level Windows programming, threads, processes, handles, memory management, and DLLs.

I'd also like the echo SoapBox, with a bit more info. C or C++ are both good for Win32 API programming, just stay clear of C++ classes like string, they're a pain to deal with in the Win32 API. The API does a lot of string manipulation in parameter lists, and C++'s string class doesn't like that much.

For my current project I'm using C++, mostly because it allows things like this:

for (int i; i < 10; i++) { ... }

and C doesn't, and I like new and delete as well.

share|improve this answer
I hate new and delete since they won't let me realloc. – Agnel Kurian Dec 18 '08 at 11:28

I see from your tags that you do some Delphi programming. The book I used to help me learn Win32 in Delphi is "The Tomes of Delphi Win32 Shell API" by John Ayres and it acts as a good reference as well.

alt text

And don't forget to use the MSDN libraries for more detailed reference on individual functions. e.g. Search Google for GetProcessMemoryInfo quickly takes you to the correct page on MSDN describing the function.

share|improve this answer
good book, I started reading it immediately after getting it – chester89 Jan 5 '09 at 20:40

You can try Ivor Horton's Beginning Visual C++ 2008, its latest in the market and covers all latest stuff. Charles Petzold has not update his book since long and its pretty outdated considering development in VS 2008.

IMO, you are programming on vista or windows 7.

share|improve this answer

Even tough it's quite dated, is Jeffrey Richter's "Advanced Windows" still relevant?

share|improve this answer
It's one year more dated than Petzold's 5th edition. – Warren P Feb 19 '12 at 23:47
  1. Win 32 Programming by Brent E Rector, Joseph M Newcomer
  2. C++ is just great. However, you may have to give up some OOPS when dealing with callbacks and other intricacies. For example, you cannot use a class member function as a callback.
share|improve this answer

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