Module: wine Branch: master Commit: 71945b76356c4772bd2d8012477755b22714aa1f URL: http://source.winehq.org/git/wine.git/?a=commit;h=71945b76356c4772bd2d801247...
Author: Francois Gouget fgouget@free.fr Date: Sun May 20 17:51:53 2012 +0200
secur32: Make some SecurityFunction methods static.
---
dlls/secur32/negotiate.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/dlls/secur32/negotiate.c b/dlls/secur32/negotiate.c index ac48a77..bf16258 100644 --- a/dlls/secur32/negotiate.c +++ b/dlls/secur32/negotiate.c @@ -407,7 +407,7 @@ static SECURITY_STATUS SEC_ENTRY nego_VerifySignature(PCtxtHandle phContext, /*********************************************************************** * FreeCredentialsHandle */ -SECURITY_STATUS SEC_ENTRY nego_FreeCredentialsHandle(PCredHandle phCredential) +static SECURITY_STATUS SEC_ENTRY nego_FreeCredentialsHandle(PCredHandle phCredential) { TRACE("%p\n", phCredential);
@@ -417,7 +417,7 @@ SECURITY_STATUS SEC_ENTRY nego_FreeCredentialsHandle(PCredHandle phCredential) /*********************************************************************** * EncryptMessage */ -SECURITY_STATUS SEC_ENTRY nego_EncryptMessage(PCtxtHandle phContext, +static SECURITY_STATUS SEC_ENTRY nego_EncryptMessage(PCtxtHandle phContext, ULONG fQOP, PSecBufferDesc pMessage, ULONG MessageSeqNo) { TRACE("%p, 0x%08x, %p, %u\n", phContext, fQOP, pMessage, MessageSeqNo); @@ -428,7 +428,7 @@ SECURITY_STATUS SEC_ENTRY nego_EncryptMessage(PCtxtHandle phContext, /*********************************************************************** * DecryptMessage */ -SECURITY_STATUS SEC_ENTRY nego_DecryptMessage(PCtxtHandle phContext, +static SECURITY_STATUS SEC_ENTRY nego_DecryptMessage(PCtxtHandle phContext, PSecBufferDesc pMessage, ULONG MessageSeqNo, PULONG pfQOP) { TRACE("%p, %p, %u, %p\n", phContext, pMessage, MessageSeqNo, pfQOP);