Skip to content

Commit

Permalink
userenv: Add CreateAppContainerProfile stub.
Browse files Browse the repository at this point in the history
  • Loading branch information
DarkShadow44 authored and JoshuaBrest committed Nov 8, 2024
1 parent b14f5dc commit 1eb02a3
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions dlls/userenv/userenv.spec
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
10 changes: 10 additions & 0 deletions dlls/userenv/userenv_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

0 comments on commit 1eb02a3

Please sign in to comment.