Commit e7730a16 authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

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

parent cb5dcc68
...@@ -389,7 +389,7 @@ static void _copyPackageInfo(PSecPkgInfoW info, const SecPkgInfoA *inInfoA, ...@@ -389,7 +389,7 @@ static void _copyPackageInfo(PSecPkgInfoW info, const SecPkgInfoA *inInfoA,
} }
SecureProvider *SECUR32_addProvider(const SecurityFunctionTableA *fnTableA, SecureProvider *SECUR32_addProvider(const SecurityFunctionTableA *fnTableA,
const SecurityFunctionTableW *fnTableW, const PWSTR moduleName) const SecurityFunctionTableW *fnTableW, PCWSTR moduleName)
{ {
SecureProvider *ret; SecureProvider *ret;
......
...@@ -103,7 +103,7 @@ typedef enum _sign_direction { ...@@ -103,7 +103,7 @@ typedef enum _sign_direction {
* Returns a pointer to the stored provider entry, for use adding packages. * Returns a pointer to the stored provider entry, for use adding packages.
*/ */
SecureProvider *SECUR32_addProvider(const SecurityFunctionTableA *fnTableA, 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. /* 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 * provider must not be NULL, and either infoA or infoW may be NULL, but not
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment