secur32: Replace const pointer parameters with correct pointers to const.
This commit is contained in:
parent
cb5dcc68f8
commit
e7730a1668
|
@ -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;
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue