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.
33 lines
821 B
33 lines
821 B
//+---------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1992 - 1999
|
|
//
|
|
// File: CertSrv.h
|
|
// Contents: Main Certificate Server header
|
|
// Also includes .h files for the COM interfaces
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#if !defined( _CERTSRV_H_ )
|
|
#define _CERTSRV_H_
|
|
|
|
#include <certadm.h>
|
|
#include <certbcli.h>
|
|
#include <certcli.h>
|
|
#include <certenc.h>
|
|
#include <certexit.h>
|
|
#include <certif.h>
|
|
#include <certpol.h>
|
|
#include <certmod.h>
|
|
#include <certview.h>
|
|
|
|
#ifndef DBG_CERTSRV
|
|
# if defined(_DEBUG)
|
|
# define DBG_CERTSRV 1
|
|
# elif defined(DBG)
|
|
# define DBG_CERTSRV DBG
|
|
# else
|
|
# define DBG_CERTSRV 0
|
|
# endif
|
|
#endif
|