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.
110 lines
1.5 KiB
110 lines
1.5 KiB
|
|
/*++
|
|
|
|
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 <lsapch2.h>
|
|
#include <netlibnt.h> // for NetpApiStatusToNtStatus
|
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
|
NTSTATUS
|
|
LsapWinerrorToNtStatus(
|
|
IN DWORD WinError
|
|
)
|
|
/*++
|
|
|
|
Routine Description:
|
|
|
|
Convert Win32 error code to NTSTATUS code
|
|
|
|
Arguments:
|
|
|
|
WinError - Win32 error code
|
|
|
|
Return Value:
|
|
|
|
Equivalent NTSTATUS code
|
|
|
|
--*/
|
|
{
|
|
return NetpApiStatusToNtStatus( WinError );
|
|
}
|
|
|
|
|
|
NTSTATUS
|
|
LsapNtStatusFromLastWinError(
|
|
)
|
|
/*++
|
|
|
|
Routine Description:
|
|
|
|
Convert error returned by GetLastError() to NTSTATUS code and return
|
|
|
|
Arguments:
|
|
|
|
None
|
|
|
|
Return Value:
|
|
|
|
NTSTATUS code equivalent of GetLastError()
|
|
|
|
--*/
|
|
{
|
|
return LsapWinerrorToNtStatus( GetLastError() );
|
|
}
|