include/wine/test.h: Do not export internal helpers.

Dmitry Timoshkov dmitry at codeweavers.com
Tue Nov 18 04:26:28 CST 2008


---
 include/wine/test.h |    6 ++----
 1 files changed, 2 insertions(+), 4 deletions(-)

diff --git a/include/wine/test.h b/include/wine/test.h
index 62d8c3a..02d833c 100644
--- a/include/wine/test.h
+++ b/include/wine/test.h
@@ -72,8 +72,6 @@ extern void winetest_wait_child_process( HANDLE process );
 #endif
 
 extern int broken( int condition );
-extern int winetest_vok( int condition, const char *msg, va_list ap );
-extern void winetest_vskip( const char *msg, va_list ap );
 
 #ifdef __GNUC__
 
@@ -250,7 +248,7 @@ int broken( int condition )
  * Return:
  *   0 if condition does not have the expected value, 1 otherwise
  */
-int winetest_vok( int condition, const char *msg, va_list args )
+static int winetest_vok( int condition, const char *msg, va_list args )
 {
     tls_data* data=get_tls_data();
 
@@ -320,7 +318,7 @@ void winetest_trace( const char *msg, ... )
     }
 }
 
-void winetest_vskip( const char *msg, va_list args )
+static void winetest_vskip( const char *msg, va_list args )
 {
     tls_data* data=get_tls_data();
 
-- 
1.6.0.3




More information about the wine-patches mailing list