Francois Gouget : sapi: Make some impl_from_Xxx() functions static.

Alexandre Julliard julliard at winehq.org
Thu Jan 4 17:03:21 CST 2018


Module: wine
Branch: master
Commit: 3fbed4c4a734bdef28065a7204693adde80fa2ac
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=3fbed4c4a734bdef28065a7204693adde80fa2ac

Author: Francois Gouget <fgouget at free.fr>
Date:   Thu Jan  4 15:55:11 2018 +0100

sapi: Make some impl_from_Xxx() functions static.

Signed-off-by: Francois Gouget <fgouget at free.fr>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

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

diff --git a/dlls/sapi/token.c b/dlls/sapi/token.c
index 781e3cc..eb35928 100644
--- a/dlls/sapi/token.c
+++ b/dlls/sapi/token.c
@@ -44,7 +44,7 @@ struct data_key
     BOOL read_only;
 };
 
-struct data_key *impl_from_ISpRegDataKey( ISpRegDataKey *iface )
+static struct data_key *impl_from_ISpRegDataKey( ISpRegDataKey *iface )
 {
     return CONTAINING_RECORD( iface, struct data_key, ISpRegDataKey_iface );
 }
@@ -235,7 +235,7 @@ struct token_category
     ISpRegDataKey *data_key;
 };
 
-struct token_category *impl_from_ISpObjectTokenCategory( ISpObjectTokenCategory *iface )
+static struct token_category *impl_from_ISpObjectTokenCategory( ISpObjectTokenCategory *iface )
 {
     return CONTAINING_RECORD( iface, struct token_category, ISpObjectTokenCategory_iface );
 }
@@ -545,7 +545,7 @@ struct token_enum
     ULONG count;
 };
 
-struct token_enum *impl_from_ISpObjectTokenEnumBuilder( ISpObjectTokenEnumBuilder *iface )
+static struct token_enum *impl_from_ISpObjectTokenEnumBuilder( ISpObjectTokenEnumBuilder *iface )
 {
     return CONTAINING_RECORD( iface, struct token_enum, ISpObjectTokenEnumBuilder_iface );
 }




More information about the wine-cvs mailing list