The information in this article applies to:
SYMPTOMS_ttoi64 is incorrectly defined in TCHAR.H in Visual C/C++ 5.0. RESOLUTIONUndefine _ttoi64 and redefine it correctly. For the complete solution, see the MORE INFORMATION section of this article. STATUSMicrosoft has confirmed this to be a bug in the Microsoft products listed at the beginning of this article. This problem was corrected in Visual C++ version 6.0 for Windows. MORE INFORMATION
_ttoi64 is a define that substitutes _atoi64 (if _UNICODE is not defined)
or _wtoi64 if _UNICODE is defined. On line 481 of TCHAR.H is the following:
this should be:
You may add the following code to your source file to correct the problem:
Additional query words:
Keywords : kbVC500bug kbVC600fix |
Last Reviewed: February 22, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |