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.

39 lines
664 B

  1. #include "dspch.h"
  2. #pragma hdrstop
  3. #include <ntlsapi.h>
  4. static
  5. LS_STATUS_CODE
  6. LS_API_ENTRY
  7. NtLicenseRequestW(
  8. LPWSTR ProductName,
  9. LPWSTR Version,
  10. LS_HANDLE FAR *LicenseHandle,
  11. NT_LS_DATA *NtData
  12. )
  13. {
  14. return STATUS_PROCEDURE_NOT_FOUND;
  15. }
  16. static
  17. LS_STATUS_CODE
  18. LS_API_ENTRY
  19. NtLSFreeHandle(
  20. LS_HANDLE LicenseHandle
  21. )
  22. {
  23. return STATUS_PROCEDURE_NOT_FOUND;
  24. }
  25. //
  26. // !! WARNING !! The entries below must be in alphabetical order, and are CASE SENSITIVE (eg lower case comes last!)
  27. //
  28. DEFINE_PROCNAME_ENTRIES(ntlsapi)
  29. {
  30. DLPENTRY(NtLSFreeHandle)
  31. DLPENTRY(NtLicenseRequestW)
  32. };
  33. DEFINE_PROCNAME_MAP(ntlsapi)