mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
userenv: Add CreateAppContainerProfile stub.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=56724
This commit is contained in:
parent
9ff41324ae
commit
4537dbdcd5
2 changed files with 11 additions and 0 deletions
|
@ -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)
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue