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.

30 lines
663 B

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. //
  5. // Copyright (C) Microsoft Corporation, 1996 - 1999
  6. //
  7. // File: enroll.h
  8. //
  9. //--------------------------------------------------------------------------
  10. typedef void * HSES;
  11. BOOL WINAPI Enroll(
  12. WCHAR * wszContainer,
  13. WCHAR * wszProvider,
  14. HSES * phSes,
  15. BYTE ** ppbCertReq,
  16. DWORD * pcbCertReq);
  17. BOOL WINAPI Accept(
  18. HSES SessionId,
  19. BYTE * pbBuff,
  20. DWORD cbBuff);
  21. BOOL WINAPI TermSession(
  22. HSES SessionId);
  23. BOOL WINAPI SetHInstance(
  24. HINSTANCE hinst);