Hello,
I recently got into C, and I am lost as to how one would go about learning how to program Windows Applications instead of the regular console stuff I always see referenced to in books. I'm using the dev-c++ compiler, and if I set the project type as a Windows Application I see a lot of code for the window handlers, like:
WinMain (HINSTANCE hThisInstance,
HINSTANCE hPrevInstance,
LPSTR lpszArgument,
int nFunsterStil)
as an example.
Could someone provide me a link to a tutorial or something on this? I haven't been able to find a single thing about it, but would like to learn.
And on a related note, is there any easy way to go about learning of the functions that are made available in header files and what they do, other than sifting through them to find the definitions?
Thanks!



LinkBack URL
About LinkBacks



other than just console applications right? could you lend some advice to a beginner so that I can finally get an eager start on learning c well?
Actually this is exactly why it is important for you to get a very firm footing in many different types of application. The windows api is one of the most complex api's around (I would say it is the most complex but then I know someone would argue with me). Go ahead an bookmark a few links but don't get buried in this stuff until you have a better grasp of the c language.