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.

58 lines
1.4 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. );
  25. DWORD
  26. TLSForwardLicenseRequest(
  27. IN PTLSForwardNewLicenseRequest pForward,
  28. IN OUT DWORD *pdwSupportFlags,
  29. IN PTLSDBLICENSEREQUEST pRequest,
  30. IN BOOL bAcceptFewerLicenses,
  31. IN OUT DWORD *pdwQuantity,
  32. OUT PDWORD pcbLicense,
  33. OUT PBYTE* ppbLicense
  34. );
  35. DWORD
  36. ForwardUpgradeLicenseRequest(
  37. IN LPTSTR pszServerSetupId,
  38. IN OUT DWORD *pdwSupportFlags,
  39. IN TLSLICENSEREQUEST* pRequest,
  40. IN CHALLENGE_CONTEXT ChallengeContext,
  41. IN DWORD cbChallengeResponse,
  42. IN PBYTE pbChallengeResponse,
  43. IN DWORD cbOldLicense,
  44. IN PBYTE pbOldLicense,
  45. OUT PDWORD pcbNewLicense,
  46. OUT PBYTE* ppbNewLicense,
  47. OUT PDWORD pdwErrCode
  48. );
  49. #ifdef __cplusplus
  50. }
  51. #endif
  52. #endif