[1/2] cmd: Add WCMD_output_stderr function to output error messages to stderr

Frédéric Delanoy frederic.delanoy at gmail.com
Sat Sep 24 05:50:55 CDT 2011


---
 programs/cmd/wcmd.h     |    1 +
 programs/cmd/wcmdmain.c |   23 ++++++++++++++++++++++-
 2 files changed, 23 insertions(+), 1 deletions(-)

diff --git a/programs/cmd/wcmd.h b/programs/cmd/wcmd.h
index 940cb6e..d370764 100644
--- a/programs/cmd/wcmd.h
+++ b/programs/cmd/wcmd.h
@@ -73,6 +73,7 @@ void WCMD_leave_paged_mode(void);
 void WCMD_more (WCHAR *);
 void WCMD_move (void);
 void WCMD_output (const WCHAR *format, ...);
+void WCMD_output_stderr (const WCHAR *format, ...);
 void WCMD_output_asis (const WCHAR *message);
 void WCMD_output_asis_stderr (const WCHAR *message);
 void WCMD_pause (void);
diff --git a/programs/cmd/wcmdmain.c b/programs/cmd/wcmdmain.c
index 26f377a..596e571 100644
--- a/programs/cmd/wcmdmain.c
+++ b/programs/cmd/wcmdmain.c
@@ -166,7 +166,7 @@ void WCMD_output (const WCHAR *format, ...) {
   va_start(ap,format);
   ret = vsnprintfW(string, sizeof(string)/sizeof(WCHAR), format, ap);
   if( ret >= (sizeof(string)/sizeof(WCHAR))) {
-       WINE_ERR("Output truncated in WCMD_output\n" );
+       WINE_ERR("Output truncated\n" );
        ret = (sizeof(string)/sizeof(WCHAR)) - 1;
        string[ret] = '\0';
   }
@@ -174,6 +174,27 @@ void WCMD_output (const WCHAR *format, ...) {
   WCMD_output_asis_len(string, ret, GetStdHandle(STD_OUTPUT_HANDLE));
 }
 
+/*******************************************************************
+ * WCMD_output_stderr - send output to current standard error device.
+ *
+ */
+
+void WCMD_output_stderr (const WCHAR *format, ...) {
+
+  va_list ap;
+  WCHAR string[1024];
+  int ret;
+
+  va_start(ap,format);
+  ret = vsnprintfW(string, sizeof(string)/sizeof(WCHAR), format, ap);
+  if( ret >= (sizeof(string)/sizeof(WCHAR))) {
+       WINE_ERR("Output truncated\n" );
+       ret = (sizeof(string)/sizeof(WCHAR)) - 1;
+       string[ret] = '\0';
+  }
+  va_end(ap);
+  WCMD_output_asis_len(string, ret, GetStdHandle(STD_ERROR_HANDLE));
+}
 
 static int line_count;
 static int max_height;
-- 
1.7.6.3




More information about the wine-patches mailing list