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.

46 lines
916 B

  1. //+--------------------------------------------------------------------------
  2. //
  3. // Copyright (c) 1997-1999 Microsoft Corporation
  4. //
  5. // File: findlost.h
  6. //
  7. // Contents:
  8. //
  9. // History:
  10. //
  11. //---------------------------------------------------------------------------
  12. #ifndef __FINDLOST_H__
  13. #define __FINDLOST_H__
  14. #include "server.h"
  15. #ifdef __cplusplus
  16. extern "C" {
  17. #endif
  18. DWORD
  19. TLSFindLicense(
  20. IN PLICENSEDPRODUCT pLicProduct,
  21. OUT PLICENSEDCLIENT pLicClient
  22. );
  23. DWORD
  24. TLSFindDbLicensedProduct(
  25. IN PTLSDBLICENSEDPRODUCT pLicProduct,
  26. OUT PLICENSEDCLIENT pLicClient
  27. );
  28. DWORD
  29. TLSDBFindLostLicense(
  30. IN PTLSDbWorkSpace pDbWkSpace,
  31. IN PTLSDBLICENSEREQUEST pLicenseRequest,
  32. IN PHWID pHwid,
  33. IN OUT PTLSDBLICENSEDPRODUCT pLicensedProduct,
  34. OUT PUCHAR pucMarked
  35. );
  36. #ifdef __cplusplus
  37. }
  38. #endif
  39. #endif