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.
42 lines
1.1 KiB
42 lines
1.1 KiB
//+-------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
//
|
|
// Copyright (C) Microsoft Corporation, 1998 - 1999
|
|
//
|
|
// File: dssetup.h
|
|
//
|
|
//--------------------------------------------------------------------------
|
|
|
|
#ifndef __DSSETUP_H__
|
|
#define __DSSETUP_H__
|
|
|
|
//+------------------------------------------------------------------------
|
|
//
|
|
// File: dssetup.h
|
|
//
|
|
// Contents: Header file for DS setup utility functions.
|
|
//
|
|
// Functions:
|
|
//
|
|
// History: 1/98 xtan Created
|
|
//
|
|
//-------------------------------------------------------------------------
|
|
|
|
BOOL IsDSAvailable(OPTIONAL bool* pfIsOldDSVersion);
|
|
HRESULT CreateCertDSHierarchy(VOID);
|
|
HRESULT InitializeCertificateTemplates(VOID);
|
|
HRESULT AddCAMachineToCertPublishers(VOID);
|
|
HRESULT RemoveCAMachineFromCertPublishers(VOID);
|
|
|
|
HRESULT
|
|
RemoveCAInDS(
|
|
IN WCHAR const *pwszSanitizedName);
|
|
|
|
BOOL
|
|
IsCAExistInDS(
|
|
IN WCHAR const *pwszSanitizedName);
|
|
|
|
HRESULT CurrentUserCanInstallCA(bool& fCanInstall);
|
|
|
|
#endif // __SETUPUT_H__
|