@@ -19,7 +19,7 @@ class TLogHelper
19
19
TLogHelper (const char * szNewMainTitle = NULL , const TCHAR * szNewSubTitle1 = NULL , const TCHAR * szNewSubTitle2 = NULL );
20
20
~TLogHelper ();
21
21
22
- #if defined(UNICODE) || defined(UNICODE)
22
+ #if 0
23
23
// TCHAR-based functions. They are only needed on UNICODE builds.
24
24
// On ANSI builds is TCHAR = char, so we don't need them at all
25
25
int PrintWithClreol(const TCHAR * szFormat, va_list argList, bool bPrintPrefix, bool bPrintLastError, bool bPrintEndOfLine);
@@ -46,7 +46,7 @@ class TLogHelper
46
46
47
47
protected:
48
48
49
- #if defined(UNICODE) || defined(UNICODE)
49
+ #if 0
50
50
TCHAR * CopyFormatCharacter(TCHAR * szBuffer, const TCHAR *& szFormat);
51
51
#endif
52
52
char * CopyFormatCharacter (char * szBuffer, const char *& szFormat);
@@ -129,7 +129,7 @@ TLogHelper::~TLogHelper()
129
129
// TCHAR-based functions. They are only needed on UNICODE builds.
130
130
// On ANSI builds is TCHAR = char, so we don't need them at all
131
131
132
- #if defined(UNICODE) || defined(UNICODE)
132
+ #if 0
133
133
int TLogHelper::PrintWithClreol(const TCHAR * szFormat, va_list argList, bool bPrintPrefix, bool bPrintLastError, bool bPrintEndOfLine)
134
134
{
135
135
TCHAR szFormatBuff[0x200];
@@ -383,7 +383,7 @@ DWORD TLogHelper::PrintVerdict(DWORD dwErrCode)
383
383
// -----------------------------------------------------------------------------
384
384
// Protected functions
385
385
386
- #ifdef _UNICODE
386
+ #if 0
387
387
TCHAR * TLogHelper::CopyFormatCharacter(TCHAR * szBuffer, const TCHAR *& szFormat)
388
388
{
389
389
// static LPCTSTR szStringFormat = _T("\"%s\"");
0 commit comments