A couple questions I have for anyone that knows WINAPI as Im trying to learn it right now..
I usually program in .Net Managed and the basic console stuff.
First: Is there a designer for WinAPI like there is in Visual Studio Form App Editor? Or is it just outright hard as hell?
Second: If there is no Form Designer, How do you know where to place buttons and stuff?
Third: Does everything I need to do go in: LRESULT CALLBACK WindowProcedure ? Because it really seems that way.. There is no "Body" to my program?
Fourth: How do I call a function in WinAPI? I don't want it in WinMain because it freezes my program..
Fifth: Where in the world do I put if-else statements.. In WinMain or the WindowProcedure thing?
Sixth: How do I make stuff execute in a specific order?? You know like in a console it goes:
int main()
{
cout<<"This executes first\n";
cout<<"This executes second.. \n";
count<<"And finally I execute second to last..\n";
return 0; //Last thing to execute.
}