Commit a866e915 authored by Mohamad Al-Jaf's avatar Mohamad Al-Jaf Committed by Alexandre Julliard

kernelbase: Add CreateBoundaryDescriptorW stub.

Needed for IE11 iertutil.dll. Signed-off-by: 's avatarMohamad Al-Jaf <mohamadaljaf@gmail.com> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent e214b99a
@ stub AddSIDToBoundaryDescriptor
@ stub ClosePrivateNamespace
@ stub CreateBoundaryDescriptorW
@ stdcall CreateBoundaryDescriptorW(wstr long) kernel32.CreateBoundaryDescriptorW
@ stub CreatePrivateNamespaceW
@ stub DeleteBoundaryDescriptor
@ stub OpenPrivateNamespaceW
......@@ -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)
......
......@@ -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)
......
......@@ -923,6 +923,15 @@ BOOL WINAPI ConvertToAutoInheritPrivateObjectSecurity( PSECURITY_DESCRIPTOR pare
}
/******************************************************************************
* CreateBoundaryDescriptorW (kernelbase.@)
*/
HANDLE WINAPI CreateBoundaryDescriptorW( LPCWSTR name, ULONG flags )
{
FIXME("%s %u - stub\n", debugstr_w(name), flags);
return NULL;
}
/******************************************************************************
* CreatePrivateObjectSecurity (kernelbase.@)
*/
BOOL WINAPI CreatePrivateObjectSecurity( PSECURITY_DESCRIPTOR parent, PSECURITY_DESCRIPTOR creator,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment