[PATCH] sapi: Make some impl_from_Xxx() functions static.

Francois Gouget fgouget at free.fr
Thu Jan 4 08:55:11 CST 2018


Signed-off-by: Francois Gouget <fgouget at free.fr>
---
 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 781e3ccb360..eb359287a99 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 );
 }
-- 
2.15.1




More information about the wine-patches mailing list