S
SteveK
I cannot for the life of me figure out how to TCHAR to be defined as an
unsigned char as it is in out 6.0 project.
I created a fresh VS 2003 project and played around with the settings and
still cannot get TCHAR to be defined as anything other than wchar_t
Here are the compiler options in my setting's command window:
/Od /D "WIN32" /D "_WINDOWS" /D "_DEBUG" /D "_MBCS" /D "_AFXDLL" /Gm /EHsc
/RTC1 /MDd /J /GR /Fo"Debug/" /Fd"Debug/vc70.pdb" /FR"Debug/" /W4 /nologo /c
/Wp64 /ZI /TP
one of them must be causing TCHAR to be set to wchar_t
Does anyone know what it doing it?
Thank you very much.
#ifndef _TCHAR_DEFINED
typedef char TCHAR, *PTCHAR; // line 324 of WinNT.h
typedef unsigned char TBYTE , *PTBYTE ;
#define _TCHAR_DEFINED
#endif /* !_TCHAR_DEFINED */
unsigned char as it is in out 6.0 project.
I created a fresh VS 2003 project and played around with the settings and
still cannot get TCHAR to be defined as anything other than wchar_t
Here are the compiler options in my setting's command window:
/Od /D "WIN32" /D "_WINDOWS" /D "_DEBUG" /D "_MBCS" /D "_AFXDLL" /Gm /EHsc
/RTC1 /MDd /J /GR /Fo"Debug/" /Fd"Debug/vc70.pdb" /FR"Debug/" /W4 /nologo /c
/Wp64 /ZI /TP
one of them must be causing TCHAR to be set to wchar_t
Does anyone know what it doing it?
Thank you very much.
#ifndef _TCHAR_DEFINED
typedef char TCHAR, *PTCHAR; // line 324 of WinNT.h
typedef unsigned char TBYTE , *PTBYTE ;
#define _TCHAR_DEFINED
#endif /* !_TCHAR_DEFINED */