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.

59 lines
1.5 KiB

  1. //+--------------------------------------------------------------------------
  2. //
  3. // Copyright (c) 1997-1999 Microsoft Corporation
  4. //
  5. // File: forward.h
  6. //
  7. // Contents:
  8. //
  9. // History:
  10. //
  11. //---------------------------------------------------------------------------
  12. #ifndef __TLS_FORWARD_H__
  13. #define __TLS_FORWARD_H__
  14. #ifdef __cplusplus
  15. extern "C" {
  16. #endif
  17. DWORD
  18. TLSForwardUpgradeRequest(
  19. IN PTLSForwardUpgradeLicenseRequest pForward,
  20. IN OUT DWORD *pdwSupportFlags,
  21. IN PTLSDBLICENSEREQUEST pRequest,
  22. OUT PDWORD pcbLicense,
  23. OUT PBYTE* ppbLicense,
  24. IN BOOL bVerifyNumOfLicenses
  25. );
  26. DWORD
  27. TLSForwardLicenseRequest(
  28. IN PTLSForwardNewLicenseRequest pForward,
  29. IN OUT DWORD *pdwSupportFlags,
  30. IN PTLSDBLICENSEREQUEST pRequest,
  31. IN BOOL bAcceptFewerLicenses,
  32. IN OUT DWORD *pdwQuantity,
  33. OUT PDWORD pcbLicense,
  34. OUT PBYTE* ppbLicense
  35. );
  36. DWORD
  37. ForwardUpgradeLicenseRequest(
  38. IN LPTSTR pszServerSetupId,
  39. IN OUT DWORD *pdwSupportFlags,
  40. IN TLSLICENSEREQUEST* pRequest,
  41. IN CHALLENGE_CONTEXT ChallengeContext,
  42. IN DWORD cbChallengeResponse,
  43. IN PBYTE pbChallengeResponse,
  44. IN DWORD cbOldLicense,
  45. IN PBYTE pbOldLicense,
  46. OUT PDWORD pcbNewLicense,
  47. OUT PBYTE* ppbNewLicense,
  48. OUT PDWORD pdwErrCode
  49. );
  50. #ifdef __cplusplus
  51. }
  52. #endif
  53. #endif