On Tue Feb 6 02:19:55 2024 +0000, Alfred Agrell wrote:
https://learn.microsoft.com/en-us/windows/win32/api/winbase/nf-winbase-copyf... says this function is in kernel32, not kernelbase. Probably just MS docs being wrong, but feels like a good candidate for double checking.
It should be exported from every DLL that it's actually exported from on Windows. That includes both kernel32 and kernelbase. Microsoft documentation is unreliable.
In practice if a function is exported from kernel32 and kernelbase, kernel32 will forward it. See how it's done for other functions.