mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 05:01:03 +00:00
[CONUTILS] Fix macro definition.
This commit is contained in:
parent
1e87e2fa9d
commit
e9113338c6
1 changed files with 3 additions and 2 deletions
|
@ -117,11 +117,12 @@ do { \
|
|||
* (not many terminals support UTF16 on the contrary).
|
||||
*/
|
||||
#define ConInitStdStreams() \
|
||||
ConInitStdStreamsAndMode(UTF8Text, INVALID_CP); // Cache code page unused
|
||||
ConInitStdStreamsAndMode(UTF8Text, INVALID_CP)
|
||||
/* Note that here the cache code page is unused */
|
||||
#else
|
||||
/* Use ANSI by default for file output */
|
||||
#define ConInitStdStreams() \
|
||||
ConInitStdStreamsAndMode(AnsiText, INVALID_CP);
|
||||
ConInitStdStreamsAndMode(AnsiText, INVALID_CP)
|
||||
#endif /* defined(_UNICODE) */
|
||||
|
||||
/* Stream translation modes */
|
||||
|
|
Loading…
Reference in a new issue