advapi32: Add stubs for GetNamedSecurityInfoExA/W.
This commit is contained in:
parent
1d9b7bda82
commit
4d154d007d
|
@ -260,8 +260,8 @@
|
||||||
# @ stub GetMultipleTrusteeOperationW
|
# @ stub GetMultipleTrusteeOperationW
|
||||||
# @ stub GetMultipleTrusteeW
|
# @ stub GetMultipleTrusteeW
|
||||||
@ stdcall GetNamedSecurityInfoA (str long long ptr ptr ptr ptr ptr)
|
@ stdcall GetNamedSecurityInfoA (str long long ptr ptr ptr ptr ptr)
|
||||||
# @ stub GetNamedSecurityInfoExA
|
@ stdcall GetNamedSecurityInfoExA(str long long str str ptr ptr ptr ptr)
|
||||||
# @ stub GetNamedSecurityInfoExW
|
@ stdcall GetNamedSecurityInfoExW(wstr long long wstr wstr ptr ptr ptr ptr)
|
||||||
@ stdcall GetNamedSecurityInfoW (wstr long long ptr ptr ptr ptr ptr)
|
@ stdcall GetNamedSecurityInfoW (wstr long long ptr ptr ptr ptr ptr)
|
||||||
@ stdcall GetNumberOfEventLogRecords (long ptr)
|
@ stdcall GetNumberOfEventLogRecords (long ptr)
|
||||||
@ stdcall GetOldestEventLogRecord (long ptr)
|
@ stdcall GetOldestEventLogRecord (long ptr)
|
||||||
|
|
|
@ -5494,6 +5494,30 @@ DWORD WINAPI GetNamedSecurityInfoW( LPWSTR name, SE_OBJECT_TYPE type,
|
||||||
return ERROR_SUCCESS;
|
return ERROR_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/******************************************************************************
|
||||||
|
* GetNamedSecurityInfoExW [ADVAPI32.@]
|
||||||
|
*/
|
||||||
|
DWORD WINAPI GetNamedSecurityInfoExW( LPCWSTR object, SE_OBJECT_TYPE type,
|
||||||
|
SECURITY_INFORMATION info, LPCWSTR provider, LPCWSTR property,
|
||||||
|
PACTRL_ACCESSW* access_list, PACTRL_AUDITW* audit_list, LPWSTR* owner, LPWSTR* group )
|
||||||
|
{
|
||||||
|
FIXME("(%s, %d, %d, %s, %s, %p, %p, %p, %p) stub\n", debugstr_w(object), type, info,
|
||||||
|
debugstr_w(provider), debugstr_w(property), access_list, audit_list, owner, group);
|
||||||
|
return ERROR_CALL_NOT_IMPLEMENTED;
|
||||||
|
}
|
||||||
|
|
||||||
|
/******************************************************************************
|
||||||
|
* GetNamedSecurityInfoExA [ADVAPI32.@]
|
||||||
|
*/
|
||||||
|
DWORD WINAPI GetNamedSecurityInfoExA( LPCSTR object, SE_OBJECT_TYPE type,
|
||||||
|
SECURITY_INFORMATION info, LPCSTR provider, LPCSTR property,
|
||||||
|
PACTRL_ACCESSA* access_list, PACTRL_AUDITA* audit_list, LPSTR* owner, LPSTR* group )
|
||||||
|
{
|
||||||
|
FIXME("(%s, %d, %d, %s, %s, %p, %p, %p, %p) stub\n", debugstr_a(object), type, info,
|
||||||
|
debugstr_a(provider), debugstr_a(property), access_list, audit_list, owner, group);
|
||||||
|
return ERROR_CALL_NOT_IMPLEMENTED;
|
||||||
|
}
|
||||||
|
|
||||||
/******************************************************************************
|
/******************************************************************************
|
||||||
* DecryptFileW [ADVAPI32.@]
|
* DecryptFileW [ADVAPI32.@]
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue