Connecting Tech Pros Worldwide Help | Site Map

Where can we get a complete list of VC++ data types?

mshetty@mail.com
Guest
 
Posts: n/a
#1: Oct 3 '06
Hi,

We need a list of all VC++ Data Types. Searched through MSDN but could
not find a single list. Since we are new to VCC+ we really don't know
if what we are getting is sufficient or there is more.

Would help if we could get some reference link.

Thanks and Regards,
M Shetty

Jochen Kalmbach [MVP]
Guest
 
Posts: n/a
#2: Oct 3 '06

re: Where can we get a complete list of VC++ data types?


Hi mshetty!
Quote:
We need a list of all VC++ Data Types. Searched through MSDN but could
not find a single list. Since we are new to VCC+ we really don't know
if what we are getting is sufficient or there is more.
http://msdn2.microsoft.com/en-us/library/s3f49ktz.aspx
http://msdn2.microsoft.com/en-us/library/cc953fe1.aspx

Or what are you looking for?

--
Greetings
Jochen

My blog about Win32 and .NET
http://blog.kalmbachnet.de/
pvdg42
Guest
 
Posts: n/a
#3: Oct 3 '06

re: Where can we get a complete list of VC++ data types?



<mshetty@mail.comwrote in message
news:1159884194.393550.298400@i42g2000cwa.googlegr oups.com...
Quote:
Hi,
>
We need a list of all VC++ Data Types. Searched through MSDN but could
not find a single list. Since we are new to VCC+ we really don't know
if what we are getting is sufficient or there is more.
>
Would help if we could get some reference link.
>
Thanks and Regards,
M Shetty
>
Are you referring to only the data types native to the C++ specification, or
are you asking about things like data types defined in the Windows API, MFC,
C++/CLI, etc?
Jochen's links are on target for the native types, but depending on project
types you intend to use there are many more...

--
Peter [MVP Visual Developer]
Jack of all trades, master of none.


mshetty@mail.com
Guest
 
Posts: n/a
#4: Oct 4 '06

re: Where can we get a complete list of VC++ data types?


Thanks a lot for the response.

We have some existing code(Web Services) that uses types like BSTR.
What category would this fall into?

Thanks and Regards,
M Shetty

pvdg42 wrote:
Quote:
<mshetty@mail.comwrote in message
news:1159884194.393550.298400@i42g2000cwa.googlegr oups.com...
Quote:
Hi,

We need a list of all VC++ Data Types. Searched through MSDN but could
not find a single list. Since we are new to VCC+ we really don't know
if what we are getting is sufficient or there is more.

Would help if we could get some reference link.

Thanks and Regards,
M Shetty
Are you referring to only the data types native to the C++ specification, or
are you asking about things like data types defined in the Windows API, MFC,
C++/CLI, etc?
Jochen's links are on target for the native types, but depending on project
types you intend to use there are many more...
>
--
Peter [MVP Visual Developer]
Jack of all trades, master of none.
Tom Widmer [VC++ MVP]
Guest
 
Posts: n/a
#5: Oct 4 '06

re: Where can we get a complete list of VC++ data types?


mshetty@mail.com wrote:
Quote:
Thanks a lot for the response.
>
We have some existing code(Web Services) that uses types like BSTR.
What category would this fall into?
Just put the cursor over BSTR and press F1 to bring up MSDN. The MSDN
index is probably the best source if you want a complete list of all
types used by Microsoft APIs and libraries.

Tom
Closed Thread