Hi all,I have some intermediate knowledge on c++ but I have a few questions about windows programming.
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, INT nCmdShow) {....
}
now here I don't understand the word "WINAPI" in c++ I have never seen such tning.. what does it mean? obviously it is not a "type"
or
or this line:
ZeroMemory(&wcx,sizeof(WNDCLASSEX));
what is this "&wcx" thing? is the "&"- the "address of" operator? like in c++
and one more question.. I red that classes in win programming is not the same as classes in c++ .. I'm totally confused .. It appears that i'm learning absolutely new programming language,and I didn't find any book or site where it is explained in such a way so I can understand it :(