kernelbase: Add CreateBoundaryDescriptorW stub.

Needed for IE11 iertutil.dll.

Signed-off-by: Mohamad Al-Jaf <mohamadaljaf@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Mohamad Al-Jaf 2021-12-06 22:17:59 -05:00 committed by Alexandre Julliard
parent e214b99ae6
commit a866e9150e
4 changed files with 12 additions and 3 deletions

View File

@ -1,6 +1,6 @@
@ stub AddSIDToBoundaryDescriptor
@ stub ClosePrivateNamespace
@ stub CreateBoundaryDescriptorW
@ stdcall CreateBoundaryDescriptorW(wstr long) kernel32.CreateBoundaryDescriptorW
@ stub CreatePrivateNamespaceW
@ stub DeleteBoundaryDescriptor
@ stub OpenPrivateNamespaceW

View File

@ -267,7 +267,7 @@
@ stdcall CreateActCtxA(ptr)
@ stdcall -import CreateActCtxW(ptr)
# @ stub CreateBoundaryDescriptorA
# @ stub CreateBoundaryDescriptorW
@ stdcall -import CreateBoundaryDescriptorW(wstr long)
@ stdcall -import CreateConsoleScreenBuffer(long long ptr long ptr)
@ stdcall -import CreateDirectoryA(str ptr)
@ stdcall CreateDirectoryExA(str str ptr)

View File

@ -174,7 +174,7 @@
# @ stub CouldMultiUserAppsBehaviorBePossibleForPackage
@ stdcall CreateActCtxW(ptr)
# @ stub CreateAppContainerToken
# @ stub CreateBoundaryDescriptorW
@ stdcall CreateBoundaryDescriptorW(wstr long)
@ stdcall CreateConsoleScreenBuffer(long long ptr long ptr)
@ stdcall CreateDirectoryA(str ptr)
@ stdcall CreateDirectoryExW(wstr wstr ptr)

View File

@ -922,6 +922,15 @@ BOOL WINAPI ConvertToAutoInheritPrivateObjectSecurity( PSECURITY_DESCRIPTOR pare
return set_ntstatus( RtlConvertToAutoInheritSecurityObject( parent, current, descr, type, is_dir, mapping ));
}
/******************************************************************************
* CreateBoundaryDescriptorW (kernelbase.@)
*/
HANDLE WINAPI CreateBoundaryDescriptorW( LPCWSTR name, ULONG flags )
{
FIXME("%s %u - stub\n", debugstr_w(name), flags);
return NULL;
}
/******************************************************************************
* CreatePrivateObjectSecurity (kernelbase.@)
*/