Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jlib
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
captainwong
jlib
Commits
08629849
Commit
08629849
authored
Aug 13, 2014
by
captainwong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update Log.h VsVer.h
parent
1cfc4e40
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
8 deletions
+8
-8
Log.h
Log.h
+7
-7
VsVer.h
VsVer.h
+1
-1
No files found.
Log.h
View file @
08629849
...
...
@@ -178,12 +178,12 @@ public:
#else
char
output
[
MAX_OUTPUT_LEN
];
if
(
Utf16ToAnsiUseCharArray
(
buf
,
m_ansiBuf
,
MAX_OUTPUT_LEN
)){
WORD
out_len
=
plog
->
FormatBuf
(
m_ansiBuf
,
output
);
plog
->
Output
(
output
,
out_len
);
plog
->
FormatBuf
(
m_ansiBuf
,
output
);
plog
->
Output
(
output
);
}
else
{
char
*
ansiOut
=
Utf16ToAnsi
(
buf
);
WORD
out_len
=
plog
->
FormatBuf
(
ansiOut
,
output
);
plog
->
Output
(
output
,
out_len
);
plog
->
FormatBuf
(
ansiOut
,
output
);
plog
->
Output
(
output
);
SAFEDELETEARR
(
ansiOut
);
}
#endif
...
...
@@ -229,8 +229,8 @@ public:
}
#else
char
output
[
MAX_OUTPUT_LEN
];
WORD
out_len
=
plog
->
FormatBuf
(
buf
,
output
);
plog
->
Output
(
output
,
out_len
);
plog
->
FormatBuf
(
buf
,
output
);
plog
->
Output
(
output
);
#endif
}
}
...
...
@@ -327,7 +327,7 @@ protected:
SAFEDELETEARR
(
ansiOut
);
}
#else
fwrite
(
buf
,
1
,
buf_len
,
m_pLogFile
);
fwrite
(
buf
,
1
,
strlen
(
buf
)
,
m_pLogFile
);
#endif
fflush
(
m_pLogFile
);
}
...
...
VsVer.h
View file @
08629849
...
...
@@ -23,6 +23,6 @@
#define _stprintf_s(buff, format, arg1, arg2) _stprintf(buff, format, arg1, arg2)
#define strcat_s(dst, len, src) strcat(dst, src)
#define _countof sizeof
#define memcpy_s(dst, size, src, len) memcpy(dst, src, len)
#endif
/***************************************/
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment