mirror of https://github.com/lianthony/NT4.0
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.
64 lines
755 B
64 lines
755 B
|
|
/*++
|
|
|
|
Copyright (c) 1991 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
lsaerror.c
|
|
|
|
Abstract:
|
|
|
|
Local Security Authority Protected Subsystem - Error Routines
|
|
|
|
Author:
|
|
|
|
Scott Birrell (ScottBi) April 30, 1992
|
|
|
|
Environment:
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
#include "lsasrvp.h"
|
|
|
|
|
|
VOID
|
|
LsapLogError(
|
|
IN OPTIONAL PUCHAR Message,
|
|
IN NTSTATUS Status
|
|
)
|
|
|
|
/*++
|
|
|
|
Routine Description:
|
|
|
|
This function retrieves the status of Lsa Initialization.
|
|
|
|
Arguments:
|
|
|
|
Message - Optional Message to be printed out if debugging enabled.
|
|
|
|
Status - Standard Nt Result Code supplied by calling routine.
|
|
|
|
Return Value:
|
|
|
|
None.
|
|
|
|
--*/
|
|
|
|
{
|
|
|
|
#if DBG
|
|
|
|
if (ARGUMENT_PRESENT(Message)) {
|
|
|
|
DbgPrint( Message, Status );
|
|
}
|
|
|
|
#endif //DBG
|
|
|
|
}
|
|
|
|
|