On 18 Oct 2006 18:01:50 -0700, "Yong.D" <di******@gmail.comwrote in
comp.lang.c++:
For example:
uint64_t TX_TAST = 0x0000000400000000;
Can I use it?
Best
Yong.D
I don't know, your compiler does. What does it say when you compile a
source file including the line above? What does your compiler's
documentation say? Does your compiler provide a header file somewhere
that provides a macro or typedef that defines unit64_T? If it does,
have you included it?
uint64_t is a required type in any C compiler that conforms to then
1999 or later version of the C language standard. It is not part of
the C++ language, but some C++ compilers provide it as an extension.
The real answer is: if your C++ compiler supports this type as an
extension, and if you include the proper header, then you can use the
type. Otherwise you cannot.
--
Jack Klein
Home:
http://JK-Technology.Com
FAQs for
comp.lang.c
http://c-faq.com/
comp.lang.c++
http://www.parashift.com/c++-faq-lite/
alt.comp.lang.learn.c-c++
http://www.contrib.andrew.cmu.edu/~a...FAQ-acllc.html