Leaked source code of windows server 2003
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.
|
|
//+-------------------------------------------------------------------------
//
// 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__
|