Module: wine Branch: master Commit: e7730a16680741f6bbce80b284fe2349df1d8030 URL: http://source.winehq.org/git/wine.git/?a=commit;h=e7730a16680741f6bbce80b284...
Author: Andrew Talbot Andrew.Talbot@talbotville.com Date: Mon Mar 26 21:29:02 2007 +0100
secur32: Replace const pointer parameters with correct pointers to const.
---
dlls/secur32/secur32.c | 2 +- dlls/secur32/secur32_priv.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/secur32/secur32.c b/dlls/secur32/secur32.c index ee0b080..421b115 100644 --- a/dlls/secur32/secur32.c +++ b/dlls/secur32/secur32.c @@ -389,7 +389,7 @@ static void _copyPackageInfo(PSecPkgInfoW info, const SecPkgInfoA *inInfoA, }
SecureProvider *SECUR32_addProvider(const SecurityFunctionTableA *fnTableA, - const SecurityFunctionTableW *fnTableW, const PWSTR moduleName) + const SecurityFunctionTableW *fnTableW, PCWSTR moduleName) { SecureProvider *ret;
diff --git a/dlls/secur32/secur32_priv.h b/dlls/secur32/secur32_priv.h index 29c48e7..8e80dea 100644 --- a/dlls/secur32/secur32_priv.h +++ b/dlls/secur32/secur32_priv.h @@ -103,7 +103,7 @@ typedef enum _sign_direction { * Returns a pointer to the stored provider entry, for use adding packages. */ SecureProvider *SECUR32_addProvider(const SecurityFunctionTableA *fnTableA, - const SecurityFunctionTableW *fnTableW, const PWSTR moduleName); + const SecurityFunctionTableW *fnTableW, PCWSTR moduleName);
/* Allocates space for and adds toAdd packages with the given provider. * provider must not be NULL, and either infoA or infoW may be NULL, but not