Re: [PATCH v2 0/2] MR810: Create NtLoadKeyEx function
9 Sep
2022
9 Sep
'22
10:18 a.m.
Huw Davies (@huw) commented about dlls/ntdll/unix/registry.c:
*/ NTSTATUS WINAPI NtLoadKey( const OBJECT_ATTRIBUTES *attr, OBJECT_ATTRIBUTES *file ) +{ + TRACE( "(%p,%p\n)", attr, file ); + return NtLoadKeyEx( attr, file, 0, 0, 0, 0, NULL, NULL ); +} + +/****************************************************************************** + * NtLoadKey2 (NTDLL.@) + */ +NTSTATUS WINAPI NtLoadKey2( const OBJECT_ATTRIBUTES *attr, OBJECT_ATTRIBUTES *file, ULONG flags ) +{ + if (flags) FIXME( "unhandled flag %x\n", flags ); + return NtLoadKey( attr, file ); +} + It probably makes more sense to forward this to `NtLoadKeyEx()`.
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/810#note_8101
1199
Age (days ago)
1199
Last active (days ago)
0 comments
1 participants
participants (1)
-
Huw Davies (@huw)