Commit 08629849 authored by captainwong's avatar captainwong

update Log.h VsVer.h

parent 1cfc4e40
...@@ -178,12 +178,12 @@ public: ...@@ -178,12 +178,12 @@ public:
#else #else
char output[MAX_OUTPUT_LEN]; char output[MAX_OUTPUT_LEN];
if(Utf16ToAnsiUseCharArray(buf, m_ansiBuf, MAX_OUTPUT_LEN)){ if(Utf16ToAnsiUseCharArray(buf, m_ansiBuf, MAX_OUTPUT_LEN)){
WORD out_len = plog->FormatBuf(m_ansiBuf, output); plog->FormatBuf(m_ansiBuf, output);
plog->Output(output, out_len); plog->Output(output);
}else{ }else{
char *ansiOut = Utf16ToAnsi(buf); char *ansiOut = Utf16ToAnsi(buf);
WORD out_len = plog->FormatBuf(ansiOut, output); plog->FormatBuf(ansiOut, output);
plog->Output(output, out_len); plog->Output(output);
SAFEDELETEARR(ansiOut); SAFEDELETEARR(ansiOut);
} }
#endif #endif
...@@ -229,8 +229,8 @@ public: ...@@ -229,8 +229,8 @@ public:
} }
#else #else
char output[MAX_OUTPUT_LEN]; char output[MAX_OUTPUT_LEN];
WORD out_len = plog->FormatBuf(buf, output); plog->FormatBuf(buf, output);
plog->Output(output, out_len); plog->Output(output);
#endif #endif
} }
} }
...@@ -327,7 +327,7 @@ protected: ...@@ -327,7 +327,7 @@ protected:
SAFEDELETEARR(ansiOut); SAFEDELETEARR(ansiOut);
} }
#else #else
fwrite(buf, 1, buf_len, m_pLogFile); fwrite(buf, 1, strlen(buf), m_pLogFile);
#endif #endif
fflush(m_pLogFile); fflush(m_pLogFile);
} }
......
...@@ -23,6 +23,6 @@ ...@@ -23,6 +23,6 @@
#define _stprintf_s(buff, format, arg1, arg2) _stprintf(buff, format, arg1, arg2) #define _stprintf_s(buff, format, arg1, arg2) _stprintf(buff, format, arg1, arg2)
#define strcat_s(dst, len, src) strcat(dst, src) #define strcat_s(dst, len, src) strcat(dst, src)
#define _countof sizeof #define _countof sizeof
#define memcpy_s(dst, size, src, len) memcpy(dst, src, len)
#endif #endif
/***************************************/ /***************************************/
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment