mirror of https://github.com/tongzx/nt5src
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
39 lines
664 B
#include "dspch.h"
|
|
#pragma hdrstop
|
|
|
|
#include <ntlsapi.h>
|
|
|
|
static
|
|
LS_STATUS_CODE
|
|
LS_API_ENTRY
|
|
NtLicenseRequestW(
|
|
LPWSTR ProductName,
|
|
LPWSTR Version,
|
|
LS_HANDLE FAR *LicenseHandle,
|
|
NT_LS_DATA *NtData
|
|
)
|
|
{
|
|
return STATUS_PROCEDURE_NOT_FOUND;
|
|
}
|
|
|
|
static
|
|
LS_STATUS_CODE
|
|
LS_API_ENTRY
|
|
NtLSFreeHandle(
|
|
LS_HANDLE LicenseHandle
|
|
)
|
|
{
|
|
return STATUS_PROCEDURE_NOT_FOUND;
|
|
}
|
|
|
|
//
|
|
// !! WARNING !! The entries below must be in alphabetical order, and are CASE SENSITIVE (eg lower case comes last!)
|
|
//
|
|
|
|
DEFINE_PROCNAME_ENTRIES(ntlsapi)
|
|
{
|
|
DLPENTRY(NtLSFreeHandle)
|
|
DLPENTRY(NtLicenseRequestW)
|
|
};
|
|
|
|
DEFINE_PROCNAME_MAP(ntlsapi)
|