Re: ntdll: add a stub for NtLoadKey2/ZwLoadKey2
27 Jan
2017
27 Jan
'17
8:06 a.m.
Austin English <austinenglish(a)gmail.com> wrote:
+NTSTATUS WINAPI NtLoadKey2(OBJECT_ATTRIBUTES *attr, OBJECT_ATTRIBUTES *file, ULONG flags) +{ + NTSTATUS ret; + + FIXME("(%p,%p,0x%08x) semi-stub: ignoring flags\n", attr, file, flags); + ret = NtLoadKey(attr, file); + + return ret; +}
There is no need for an intermediate variable. -- Dmitry.
3244
Age (days ago)
3244
Last active (days ago)
0 comments
1 participants
participants (1)
-
Dmitry Timoshkov