Changeset 96586 in vbox for trunk/src/VBox/Runtime/r3/win
- Timestamp:
- Sep 3, 2022 2:35:25 AM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 153463
- Location:
- trunk/src/VBox/Runtime/r3/win
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/win/nocrt-RTLogWriteStdErr-win.cpp
r96407 r96586 49 49 HANDLE hStdErr = GetStdHandle(STD_ERROR_HANDLE); 50 50 if (hStdErr != NULL && hStdErr != INVALID_HANDLE_VALUE) 51 WriteFile(hStdErr, pch, (DWORD)cb, NULL, NULL); /** @todo do we need to translate \\n to \\r\\n? */ 51 { 52 DWORD cbIgn; /* NT3.1 requires the return size parameter. */ 53 WriteFile(hStdErr, pch, (DWORD)cb, &cbIgn, NULL); /** @todo do we need to translate \\n to \\r\\n? */ 54 } 52 55 } 53 56 RT_EXPORT_SYMBOL(RTLogWriteStdErr); -
trunk/src/VBox/Runtime/r3/win/nocrt-RTLogWriteStdOut-win.cpp
r96407 r96586 50 50 HANDLE hStdErr = GetStdHandle(STD_OUTPUT_HANDLE); 51 51 if (hStdErr != NULL && hStdErr != INVALID_HANDLE_VALUE) 52 WriteFile(hStdErr, pch, (DWORD)cb, NULL, NULL); /** @todo do we need to translate \\n to \\r\\n? */ 52 { 53 DWORD cbIgn; /* NT3.1 requires the return size parameter. */ 54 WriteFile(hStdErr, pch, (DWORD)cb, &cbIgn, NULL); /** @todo do we need to translate \\n to \\r\\n? */ 55 } 53 56 } 54 57 RT_EXPORT_SYMBOL(RTLogWriteStdOut);
Note:
See TracChangeset
for help on using the changeset viewer.