Nice collection of Win32 API tutorials

Started by
4 comments, last by MJP 16 years, 2 months ago
Hey everyone :) I have just came upon a web site that seems to cover a very wide array of topics in programming with the Win32 API in C++. I have never seen this posted here before, so please forgive me if it was already. I am hoping that this resource may help anyone wanting to learn the Win32 API, and the Forgers tutorials is not enough. Website Clicky
Advertisement
I've seen this site before, but I gave it a second look just now. Then I just changed a couple flags in my application and eliminated all flicker. Saves time on writing double-buffer code, so I consider that helpful. :|
Readers beware: some of those tutorials contain "tricks" involving undocumented API features. Using those are a good way to ensure that your application isn't forwards or backwards compatible, and is also a sure way to get on Raymond Chen's bad side.
Useless, except for kids.
A lot of bad and beginners practices.
The only available resources are in books, from Richter or Russinovich or MSDN.
Quote:Original post by george135
Useless, except for kids.
A lot of bad and beginners practices.
The only available resources are in books, from Richter or Russinovich or MSDN.


Specifics would help readers understand what you're talking about. What about it is bad?
Quote:Original post by Justin Rebuilt

Specifics would help readers understand what you're talking about. What about it is bad?


For the issue I mentioned, the author usually mentions it right there that he's using undocumented features. Unfortunately, he makes no attempt to explain the consequences of using these features. Instead he usually says something along the lines of "ZOMG this function is so cool, MS hid it just to keep it for themselves!". In reality, these functions and features and reserved parameters aren't documented because MS may need to change or remove these at any point in the future. This could during the next OS version, or even during a service pack upgrade. For the same reason, you're also not guaranteed that your hacks will work on previous versions of Windows (or even the one you're using). In my experience there's very little that you can't accomplish with the documented API calls, and certainly nothing that would be useful for games development.

This topic is closed to new replies.

Advertisement