You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.1 KiB
48 lines
1.1 KiB
//+-------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
//
|
|
// Copyright (C) Microsoft Corporation, 1996 - 1999
|
|
//
|
|
// File: storprov.h
|
|
//
|
|
// Contents: Microsoft Internet Security Trust Provider
|
|
//
|
|
// History: 15-Oct-1997 pberkman created
|
|
//
|
|
//--------------------------------------------------------------------------
|
|
|
|
#ifndef STORPROV_H
|
|
#define STORPROV_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
|
|
#define WVT_STOREID_ROOT 0
|
|
#define WVT_STOREID_TRUST 1
|
|
#define WVT_STOREID_CA 2
|
|
#define WVT_STOREID_MY 3
|
|
#define WVT_STOREID_SPC 4
|
|
#define WVT_STOREID_LM_MY 5
|
|
#define WVT_STOREID_MAX 6
|
|
|
|
typedef struct STORE_REF_
|
|
{
|
|
DWORD dwFlags;
|
|
WCHAR *pwszStoreName;
|
|
HCERTSTORE hStore;
|
|
} STORE_REF;
|
|
|
|
|
|
extern HCERTSTORE StoreProviderGetStore(HCRYPTPROV hProv, DWORD dwStoreId);
|
|
extern BOOL StoreProviderUnload(void);
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // STORPROV_H
|