mirror of
https://github.com/reactos/reactos.git
synced 2025-06-25 02:59:42 +00:00
[RTL] Partially sync actctx.c with Wine Staging 1.7.55. Fixes 3 kernel32:actctx failures. CORE-10536
svn path=/trunk/; revision=70181
This commit is contained in:
parent
7ceb06e329
commit
4328123d60
2 changed files with 5 additions and 2 deletions
|
@ -3486,7 +3486,7 @@ static NTSTATUS find_window_class(ACTIVATION_CONTEXT* actctx, const UNICODE_STRI
|
||||||
{
|
{
|
||||||
const WCHAR *nameW = (WCHAR*)((BYTE*)actctx->wndclass_section + iter->name_offset);
|
const WCHAR *nameW = (WCHAR*)((BYTE*)actctx->wndclass_section + iter->name_offset);
|
||||||
|
|
||||||
if (!strcmpW(nameW, name->Buffer))
|
if (!strcmpiW(nameW, name->Buffer))
|
||||||
{
|
{
|
||||||
index = iter;
|
index = iter;
|
||||||
break;
|
break;
|
||||||
|
@ -4585,6 +4585,9 @@ static NTSTATUS find_string(ACTIVATION_CONTEXT* actctx, ULONG section_kind,
|
||||||
|
|
||||||
switch (section_kind)
|
switch (section_kind)
|
||||||
{
|
{
|
||||||
|
case ACTIVATION_CONTEXT_SECTION_ASSEMBLY_INFORMATION:
|
||||||
|
DPRINT1("Unsupported yet section_kind %x\n", section_kind);
|
||||||
|
return STATUS_SXS_KEY_NOT_FOUND;
|
||||||
case ACTIVATION_CONTEXT_SECTION_DLL_REDIRECTION:
|
case ACTIVATION_CONTEXT_SECTION_DLL_REDIRECTION:
|
||||||
status = find_dll_redirection(actctx, section_name, data);
|
status = find_dll_redirection(actctx, section_name, data);
|
||||||
break;
|
break;
|
||||||
|
|
|
@ -252,7 +252,7 @@ check Wine current sources first as it may already be fixed.
|
||||||
|
|
||||||
reactos/lib/3rdparty/strmbase # Synced to WineStaging-1.7.55
|
reactos/lib/3rdparty/strmbase # Synced to WineStaging-1.7.55
|
||||||
|
|
||||||
reactos/lib/rtl/actctx.c # Partly synced with WineStaging-1.7.37
|
reactos/lib/rtl/actctx.c # Partly synced with WineStaging-1.7.55
|
||||||
reactos/lib/rtl/timerqueue.c # Partly synced with WineStaging-1.7.55
|
reactos/lib/rtl/timerqueue.c # Partly synced with WineStaging-1.7.55
|
||||||
|
|
||||||
advapi32 -
|
advapi32 -
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue