Hi, I have been programming in c++ for about a year now(so i am still a beginner),
and i wanted to learn some windows programming. I have tried to, but i got really confused with all the data types(lpstr,lpwstr...). i wanted to know, is there some online tutorial, or a book, that can help me understand that, and start programming for win in c++?
In Windows API all the datatypes are about the size of it a example is:
DWORD it is a abbreviation for Double Word and a WORD is 16 bit unsigned int and therefore a DWORD is double the size of work thus the DWORD is 32 bit unsigned int.
There is a library for datatypes, it is in MSDN link: http://msdn.microsoft.com/en-us/library/aa383751(VS.85).aspx
Most of these are typedefs, others are simply #define ed.
You should check msdn for documentations. Learn by example. Windows programming has a unique style you will find easier if you become more familiar with it.