How can I learn about the Win32 API?

前端 未结 5 545
刺人心
刺人心 2021-01-31 09:43

I want to learn how to be able to use the Win32 API, since recently I\'ve got a lot of tasks I need to do which requires functions from user32.dll, so I\'m trying t

5条回答
  •  傲寒
    傲寒 (楼主)
    2021-01-31 10:15

    First, Win32 is a set of subsystems. You possibly can't learn them all easily. You just have to prioritize.

    But then, to be able to say what you'd like to learn, you probably need a big picture. I believe the best way to approach Win32 is through "Programming Windows" by Charles Petzold. It's very clear to read and easy to understand. There are a lot of examples you can pick up and experiment on your own.

    After you learn the basic stuff, I recommend "Microsoft Windows Internals" by Mark Russinovich. It's rather advanced but lets you understand what's inside Windows core.

提交回复
热议问题