- command line handling (GUI will follow)
- strip .exe[.so] from test names
- version 2 output

diff --git a/programs/winetest/winetest.h b/programs/winetest/winetest.h
index f49ba30..f4dcd5c 100644
--- a/programs/winetest/winetest.h
+++ b/programs/winetest/winetest.h
@@ -33,6 +33,7 @@
 void xprintf (const char *fmt, ...);
 char *vstrmake (size_t *lenp, va_list ap);
 char *strmake (size_t *lenp, ...);
+char *badtagchar (char *tag);
 
 int send_file (const char *name);
 
@@ -47,9 +48,12 @@
     R_DELTA,
     R_DIR,
     R_OUT,
-    R_FATAL,
     R_WARNING,
-    R_ASK
+    R_ERROR,
+    R_FATAL,
+    R_ASK,
+    R_TEXTMODE,
+    R_QUIET
 };
 
 int report (enum report_type t, ...);