34 lines
788 B
C
34 lines
788 B
C
|
//+---------------------------------------------------------------------------
|
||
|
//
|
||
|
// 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
|