mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 04:39:45 +00:00
LsaNtStatusToDosError implementation.
This commit is contained in:
parent
9dccb29447
commit
d7922143dd
@ -301,6 +301,7 @@
|
||||
@ stub LsaGetSystemAccessAccount
|
||||
@ stub LsaSetInformationTrustedDomain
|
||||
@ stub LsaEnumerateTrustedDomains
|
||||
@ stdcall LsaNtStatusToWinError(long) LsaNtStatusToWinError
|
||||
@ stub LsaOpenAccount
|
||||
@ stub LsaEnumeratePrivileges
|
||||
@ stub LsaLookupPrivilegeDisplayName
|
||||
|
@ -22,6 +22,7 @@
|
||||
|
||||
#include "windef.h"
|
||||
#include "winerror.h"
|
||||
#include "rpcnterr.h"
|
||||
#include "heap.h"
|
||||
#include "ntddk.h"
|
||||
#include "ntsecapi.h"
|
||||
@ -917,6 +918,19 @@ LsaClose(IN LSA_HANDLE ObjectHandle)
|
||||
FIXME("(%p):stub\n",ObjectHandle);
|
||||
return 0xc0000000;
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
* LsaNtStatusToWinError [ADVAPI32.@]
|
||||
*
|
||||
* PARAMS
|
||||
* Status [I]
|
||||
*/
|
||||
ULONG WINAPI
|
||||
LsaNtStatusToWinError(NTSTATUS Status)
|
||||
{
|
||||
return RtlNtStatusToDosError(Status);
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
* NotifyBootConfigStatus [ADVAPI32.@]
|
||||
*
|
||||
|
@ -69,6 +69,8 @@ NTSTATUS WINAPI LsaQueryInformationPolicy(LSA_HANDLE,POLICY_INFORMATION_CLASS,PV
|
||||
|
||||
NTSTATUS WINAPI LsaFreeMemory(PVOID);
|
||||
NTSTATUS WINAPI LsaClose(IN LSA_HANDLE ObjectHandle);
|
||||
ULONG WINAPI LsaNtStatusToWinError(NTSTATUS Status);
|
||||
|
||||
|
||||
#ifdef __cplusplus
|
||||
} /* extern "C" */
|
||||
|
Loading…
Reference in New Issue
Block a user