secur32: Replace const pointer parameters with correct pointers to const

Andrew Talbot Andrew.Talbot at talbotville.com
Mon Mar 26 15:29:02 CDT 2007


Changelog:
    secur32: Replace const pointer parameters with correct pointers to const.

diff -urN a/dlls/secur32/secur32.c b/dlls/secur32/secur32.c
--- a/dlls/secur32/secur32.c	2007-03-12 17:33:59.000000000 +0000
+++ b/dlls/secur32/secur32.c	2007-03-26 20:58:46.000000000 +0100
@@ -389,7 +389,7 @@
 }
 
 SecureProvider *SECUR32_addProvider(const SecurityFunctionTableA *fnTableA,
- const SecurityFunctionTableW *fnTableW, const PWSTR moduleName)
+ const SecurityFunctionTableW *fnTableW, PCWSTR moduleName)
 {
     SecureProvider *ret;
 
diff -urN a/dlls/secur32/secur32_priv.h b/dlls/secur32/secur32_priv.h
--- a/dlls/secur32/secur32_priv.h	2006-11-29 17:26:12.000000000 +0000
+++ b/dlls/secur32/secur32_priv.h	2007-03-26 21:12:08.000000000 +0100
@@ -103,7 +103,7 @@
  * 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



More information about the wine-patches mailing list