Source code of Windows XP (NT5)
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.

40 lines
907 B

  1. //+--------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1996 - 1999
  5. //
  6. // File: ciinit.h
  7. //
  8. // Contents: Cert Server common definitions
  9. //
  10. // History: 25-Jul-96 vich created
  11. //
  12. //---------------------------------------------------------------------------
  13. #ifndef __CIINIT_H__
  14. #define __CIINIT_H__
  15. #ifdef __cplusplus
  16. extern "C" {
  17. #endif
  18. typedef struct _SERVERCALLBACKS {
  19. FNCIGETPROPERTY *pfnGetProperty;
  20. FNCISETPROPERTY *pfnSetProperty;
  21. FNCIGETEXTENSION *pfnGetExtension;
  22. FNCISETEXTENSION *pfnSetExtension;
  23. FNCIENUMSETUP *pfnEnumSetup;
  24. FNCIENUMNEXT *pfnEnumNext;
  25. FNCIENUMCLOSE *pfnEnumClose;
  26. } SERVERCALLBACKS;
  27. DWORD WINAPI
  28. CertificateInterfaceInit(
  29. IN SERVERCALLBACKS const *psb,
  30. IN DWORD cbsb);
  31. #ifdef __cplusplus
  32. }
  33. #endif
  34. #endif // __CIINIT_H__