wbemprox: Make some signature table functions static.

Francois Gouget fgouget at free.fr
Fri Jul 27 03:22:28 CDT 2012


---
 dlls/wbemprox/class.c |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dlls/wbemprox/class.c b/dlls/wbemprox/class.c
index 293c8c4..801a553 100644
--- a/dlls/wbemprox/class.c
+++ b/dlls/wbemprox/class.c
@@ -471,7 +471,7 @@ static void set_default_value( CIMTYPE type, UINT val, BYTE *ptr )
     }
 }
 
-HRESULT create_signature_columns_and_data( IEnumWbemClassObject *iter, UINT *num_cols,
+static HRESULT create_signature_columns_and_data( IEnumWbemClassObject *iter, UINT *num_cols,
                                            struct column **cols, BYTE **data )
 {
     static const WCHAR parameterW[] = {'P','a','r','a','m','e','t','e','r',0};
@@ -525,7 +525,7 @@ error:
     return hr;
 }
 
-HRESULT create_signature_table( IEnumWbemClassObject *iter, WCHAR *name )
+static HRESULT create_signature_table( IEnumWbemClassObject *iter, WCHAR *name )
 {
     HRESULT hr;
     struct table *table;
@@ -546,7 +546,7 @@ HRESULT create_signature_table( IEnumWbemClassObject *iter, WCHAR *name )
     return S_OK;
 }
 
-WCHAR *build_signature_table_name( const WCHAR *class, const WCHAR *method, enum param_direction dir )
+static WCHAR *build_signature_table_name( const WCHAR *class, const WCHAR *method, enum param_direction dir )
 {
     static const WCHAR fmtW[] = {'_','_','%','s','_','%','s','_','%','s',0};
     static const WCHAR outW[] = {'O','U','T',0};
-- 
1.7.10.4



More information about the wine-patches mailing list