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 to learn and I googled but the thing is: every tutorial there is about it, just tells you how to do a certain thing. like show a MessageBox through the Win32 API, but you can't actually learn the library.
So how do you actually learn it? How do you know all the functions? with managed libraries it's quite easily, especialy in VS with the Object Browser (which lets you see all the namespaces, classes, interfaces, etc.) but this thing is so messy (at least with C#).
The way I've been using it until now is just searching on Google for a task and seeing that it can be done with the Win32 API (I had no idea) and just copy the function and use it (and it's horrible for me, I feel I'm missing a lot of "power"). So, how can I learn it? Thanks.
To be clear: I'm not interested in a book. as bad as it sounds I need this knowledge for a project and I just don't have the time to invest in a book. I did get my answer although. thank you all.
