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.

33 lines
821 B

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1992 - 1999
  5. //
  6. // File: CertSrv.h
  7. // Contents: Main Certificate Server header
  8. // Also includes .h files for the COM interfaces
  9. //
  10. //----------------------------------------------------------------------------
  11. #if !defined( _CERTSRV_H_ )
  12. #define _CERTSRV_H_
  13. #include <certadm.h>
  14. #include <certbcli.h>
  15. #include <certcli.h>
  16. #include <certenc.h>
  17. #include <certexit.h>
  18. #include <certif.h>
  19. #include <certpol.h>
  20. #include <certmod.h>
  21. #include <certview.h>
  22. #ifndef DBG_CERTSRV
  23. # if defined(_DEBUG)
  24. # define DBG_CERTSRV 1
  25. # elif defined(DBG)
  26. # define DBG_CERTSRV DBG
  27. # else
  28. # define DBG_CERTSRV 0
  29. # endif
  30. #endif