crypt32: Make some data const.

This commit is contained in:
Dmitry Timoshkov 2006-12-14 22:46:40 +08:00 committed by Alexandre Julliard
parent b99e60e29f
commit 8330bd6c26
1 changed files with 3 additions and 3 deletions

View File

@ -1057,7 +1057,7 @@ static void CRYPT_RegReadSerializedFromReg(PWINE_REGSTOREINFO store, HKEY key,
static void CRYPT_RegReadFromReg(PWINE_REGSTOREINFO store) static void CRYPT_RegReadFromReg(PWINE_REGSTOREINFO store)
{ {
static const WCHAR *subKeys[] = { CertsW, CRLsW, CTLsW }; static const WCHAR * const subKeys[] = { CertsW, CRLsW, CTLsW };
static const DWORD contextFlags[] = { CERT_STORE_CERTIFICATE_CONTEXT_FLAG, static const DWORD contextFlags[] = { CERT_STORE_CERTIFICATE_CONTEXT_FLAG,
CERT_STORE_CRL_CONTEXT_FLAG, CERT_STORE_CTL_CONTEXT_FLAG }; CERT_STORE_CRL_CONTEXT_FLAG, CERT_STORE_CTL_CONTEXT_FLAG };
DWORD i; DWORD i;
@ -1146,8 +1146,8 @@ static BOOL CRYPT_SerializeContextsToReg(HKEY key,
static BOOL CRYPT_RegWriteToReg(PWINE_REGSTOREINFO store) static BOOL CRYPT_RegWriteToReg(PWINE_REGSTOREINFO store)
{ {
static const WCHAR *subKeys[] = { CertsW, CRLsW, CTLsW }; static const WCHAR * const subKeys[] = { CertsW, CRLsW, CTLsW };
static const WINE_CONTEXT_INTERFACE *interfaces[] = { &gCertInterface, static const WINE_CONTEXT_INTERFACE * const interfaces[] = { &gCertInterface,
&gCRLInterface, &gCTLInterface }; &gCRLInterface, &gCTLInterface };
struct list *listToDelete[] = { &store->certsToDelete, &store->crlsToDelete, struct list *listToDelete[] = { &store->certsToDelete, &store->crlsToDelete,
NULL }; NULL };