mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
[ADVAPI32]
Remove LsaRegisterPolicyChangeNotification and LsaUnregisterPolicyChangeNotification because they are not exported by advapi32.dll. These functions are exported by secur32.dll instead. svn path=/trunk/; revision=58413
This commit is contained in:
parent
4e3246a215
commit
74fa508092
2 changed files with 0 additions and 30 deletions
|
@ -391,7 +391,6 @@
|
|||
@ stdcall LsaQuerySecurityObject(ptr long ptr)
|
||||
@ stdcall LsaQueryTrustedDomainInfo(ptr ptr long ptr)
|
||||
@ stdcall LsaQueryTrustedDomainInfoByName(ptr ptr long ptr)
|
||||
@ stdcall LsaRegisterPolicyChangeNotification(long long)
|
||||
@ stdcall LsaRemoveAccountRights(ptr ptr long ptr long)
|
||||
@ stdcall LsaRemovePrivilegesFromAccount(ptr long ptr)
|
||||
@ stdcall LsaRetrievePrivateData(ptr ptr ptr)
|
||||
|
@ -406,7 +405,6 @@
|
|||
@ stdcall LsaSetTrustedDomainInfoByName(ptr ptr long ptr)
|
||||
@ stdcall LsaSetTrustedDomainInformation(ptr ptr long ptr)
|
||||
@ stdcall LsaStorePrivateData(ptr ptr ptr)
|
||||
@ stdcall LsaUnregisterPolicyChangeNotification(long long)
|
||||
@ stdcall MD4Final(ptr)
|
||||
@ stdcall MD4Init(ptr)
|
||||
@ stdcall MD4Update(ptr ptr long)
|
||||
|
|
|
@ -1594,20 +1594,6 @@ LsaQueryTrustedDomainInfoByName(IN LSA_HANDLE PolicyHandle,
|
|||
}
|
||||
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
*/
|
||||
NTSTATUS
|
||||
WINAPI
|
||||
LsaRegisterPolicyChangeNotification(IN POLICY_NOTIFICATION_INFORMATION_CLASS InformationClass,
|
||||
IN HANDLE NotificationEventHandle)
|
||||
{
|
||||
FIXME("LsaRegisterPolicyChangeNotification(%d %p) stub\n",
|
||||
InformationClass, NotificationEventHandle);
|
||||
return STATUS_UNSUCCESSFUL;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* @implemented
|
||||
*/
|
||||
|
@ -2026,18 +2012,4 @@ LsaStorePrivateData(IN LSA_HANDLE PolicyHandle,
|
|||
return STATUS_OBJECT_NAME_NOT_FOUND;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
*/
|
||||
NTSTATUS
|
||||
WINAPI
|
||||
LsaUnregisterPolicyChangeNotification(IN POLICY_NOTIFICATION_INFORMATION_CLASS InformationClass,
|
||||
IN HANDLE NotificationEventHandle)
|
||||
{
|
||||
FIXME("(%d %p) stub\n",
|
||||
InformationClass, NotificationEventHandle);
|
||||
return STATUS_SUCCESS;
|
||||
}
|
||||
|
||||
/* EOF */
|
||||
|
|
Loading…
Reference in a new issue