windows-nt/Source/XPSP1/NT/ds/netapi/svcdlls/lls/inc/lpcstub.h
2020-09-26 16:20:57 +08:00

55 lines
1.1 KiB
C

/*++
Copyright (c) 1998-99 Microsoft Corporation
Module Name:
lpcstub.h
Abstract:
--*/
//
//
//
#ifndef _LLSLPCSTUB_H
#define _LLSLPCSTUB_H
#ifdef __cplusplus
extern "C" {
#endif
NTSTATUS LLSInitLPC();
NTSTATUS LLSCloseLPC();
NTSTATUS LLSLicenseRequest ( IN LPWSTR ProductName, IN LPWSTR Version, IN ULONG DataType,
IN BOOLEAN IsAdmin, IN PVOID Data, OUT ULONG *LicenseHandle );
NTSTATUS LLSLicenseFree ( IN ULONG LicenseHandle );
NTSTATUS LLSLicenseRequest2 ( IN LPWSTR ProductName, IN LPWSTR Version, IN ULONG DataType,
IN BOOLEAN IsAdmin, IN PVOID Data, OUT LS_HANDLE *LicenseHandle );
NTSTATUS LLSLicenseFree2 ( IN LS_HANDLE LicenseHandle );
#ifdef DEBUG
NTSTATUS LLSDbg_TableDump ( ULONG Table );
NTSTATUS LLSDbg_TableInfoDump ( IN ULONG Table, IN ULONG DataType, IN PVOID Data );
NTSTATUS LLSDbg_TableFlush ( ULONG Table );
NTSTATUS LLSDbg_TraceSet ( ULONG Level );
NTSTATUS LLSDbg_ConfigDump ( );
NTSTATUS LLSDbg_ReplicationForce ( );
NTSTATUS LLSDbg_ReplicationDeny ( );
NTSTATUS LLSDbg_RegistryUpdateForce ( );
NTSTATUS LLSDbg_LicenseCheckForce ( );
#endif
#ifdef __cplusplus
}
#endif
#endif