advapi32: Constify a variable.

This commit is contained in:
Andrew Talbot 2007-03-03 22:36:05 +00:00 committed by Alexandre Julliard
parent 96c84497da
commit 201317ed5e
1 changed files with 1 additions and 1 deletions

View File

@ -193,7 +193,7 @@ static BOOL CALLBACK CRYPT_ReturnhWnd(HWND *phWnd)
if ( !(provider->pFuncs->p##name = (void*)GetProcAddress(provider->hModule, #name)) ) goto error
#define CRYPT_GetProvFuncOpt(name) \
provider->pFuncs->p##name = (void*)GetProcAddress(provider->hModule, #name)
static PCRYPTPROV CRYPT_LoadProvider(PWSTR pImage)
static PCRYPTPROV CRYPT_LoadProvider(PCWSTR pImage)
{
PCRYPTPROV provider;
DWORD errorcode = ERROR_NOT_ENOUGH_MEMORY;