Leaked source code of windows server 2003
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.
 
 
 
 
 
 

54 lines
1.2 KiB

/*++
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