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

This commit is contained in:
Andrew Talbot 2007-03-26 21:29:02 +01:00 committed by Alexandre Julliard
parent cb5dcc68f8
commit e7730a1668
2 changed files with 2 additions and 2 deletions

View file

@ -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;

View file

@ -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