1
0
mirror of https://github.com/wine-mirror/wine synced 2024-06-29 06:14:34 +00:00

userenv: Add CreateAppContainerProfile stub.

Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=56724
This commit is contained in:
Fabian Maurer 2024-05-26 06:41:10 +02:00 committed by Alexandre Julliard
parent 9ff41324ae
commit 4537dbdcd5
2 changed files with 11 additions and 0 deletions

View File

@ -1,5 +1,6 @@
138 stdcall @(long str str str str long str long long str str long) USERENV_138
@ stdcall CreateAppContainerProfile(wstr wstr wstr ptr long ptr)
@ stdcall CreateEnvironmentBlock(ptr ptr long)
@ stdcall DestroyEnvironmentBlock(ptr)
@ stdcall EnterCriticalPolicySection(long)

View File

@ -688,3 +688,13 @@ BOOL WINAPI USERENV_138( int csidl, LPCSTR lnk_dir, LPCSTR lnk_filename,
return FALSE;
}
HRESULT WINAPI CreateAppContainerProfile(PCWSTR container_name, PCWSTR display_name, PCWSTR description,
SID_AND_ATTRIBUTES *capabilities, DWORD capability_count,
SID **container_sid)
{
FIXME("(%s, %s, %s, %p, %ld, %p): stub\n", debugstr_w(container_name), debugstr_w(display_name),
debugstr_w(description), capabilities, capability_count, container_sid);
return E_NOTIMPL;
}