kumar
kumar

Reputation: 1137

Any Tutorials for Win32 SDK Programming?

What are some good websites for Win32 SDK programming tutorials?

Upvotes: 8

Views: 7746

Answers (9)

afu802
afu802

Reputation: 131

Absolutely Programming Windows, 5th edition by Charles Petzold.

Upvotes: 2

Searock
Searock

Reputation: 6498

You can find all the references and getting started tutorials for Win32 SDK programming at MSDN.

Upvotes: 0

Naveen
Naveen

Reputation: 6008

Autohotkey source code: http://www.autohotkey.com/download/

Upvotes: 1

stephen12
stephen12

Reputation:

Yes, Petzold book (98), Richter book (4), Win32 group for undocumented apis and Windows source code (wine, etc), and Russinovich book also..

Upvotes: 1

novel
novel

Reputation:

Avoid tutorials (by kids for kids)
Read the Petzold + Richter + Adv. Win32 Group (news://nntp.aioe.org/comp.os.ms-windows.programmer.win32)

And avoid Newcomer (newbie in Win32, knows MFC only...)

Upvotes: 0

Prabhu R
Prabhu R

Reputation: 14242

If you really need a simple starter that will guide you through the basics. You can read "Windows Programming from the Ground Up" by Herbert Schildt. It will be a good forerunner to Charles Petzold. I read Herb Schildt first and then Charles Petzold, and I really was able to understand what Petzold was talking very easily.

Upvotes: 1

AndersK
AndersK

Reputation: 36092

This is my favorite: Win32 Programming by Rector & Newcomer It is massive and goes through all the basic concepts down to the nuts and bolts about Win32 programming.

BTW: Newcomer has a website also with examples (although more related to MFC) here

Upvotes: 2

William Leara
William Leara

Reputation: 10697

The generally accepted bible for Win32 is the Petzold book:

http://www.amazon.com/Programming-Windows%C2%AE-Fifth-Microsoft/dp/157231995X

It's not online, but worth purchasing if you're serious about Win32, IMHO.

Upvotes: 13

user36457
user36457

Reputation:

The best online tutorial with regards to native Win32 programming would have to be The Forger's Win32 API tutorial.

Upvotes: 9

Related Questions