starting with win programming

Jun 16, 2013 at 10:55am
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++?
Jun 16, 2013 at 2:01pm
You can program in Windows by using the Windows Presentation Foundation where there is no need to use such typedef identifies.:)
Jun 16, 2013 at 5:11pm
closed account (G309216C)
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

GL
Jun 16, 2013 at 6:42pm
Thanks!
Jun 16, 2013 at 7:10pm
closed account (G309216C)
Hi,

No problem, pleasure to help

Until Next time
Jun 17, 2013 at 3:36am
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.
Jun 18, 2013 at 8:20pm
there is a youtuber named nickfrosty that makes some really usefull tutorials on windows programming. http://www.youtube.com/user/MrNickfrosty
Topic archived. No new replies allowed.